/* McWinter - Winter Theme CSS */

:root {
  --primary-color: #4A90E2;
  --secondary-color: #7FB3D5;
  --accent-color: #E8F4F8;
  --dark-blue: #1a1f2e;
  --snow-white: #FFFFFF;
  --ice-blue: #64B5F6;
  --text-dark: #0a0e1a;
  --text-light: #FFFFFF;
  --bg-dark: #0f1419;
  --bg-dark-secondary: #1a1f2e;
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  --online-green: #4CAF50;
  --offline-red: #F44336;
}

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

body {
  font-family: 'Poppins', sans-serif;
  background: linear-gradient(180deg, #0a0e1a 0%, #1a1f2e 50%, #0f1419 100%);
  background-attachment: fixed;
  color: var(--text-light);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Snowflakes Animation */
.snowflakes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1000;
}

.snowflake {
  position: absolute;
  top: -10%;
  color: var(--snow-white);
  font-size: 1.5em;
  opacity: 0.8;
  animation: fall linear infinite;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.snowflake:nth-child(1) { left: 10%; animation-duration: 10s; animation-delay: 0s; }
.snowflake:nth-child(2) { left: 20%; animation-duration: 12s; animation-delay: 2s; font-size: 2em; }
.snowflake:nth-child(3) { left: 30%; animation-duration: 9s; animation-delay: 1s; }
.snowflake:nth-child(4) { left: 40%; animation-duration: 11s; animation-delay: 3s; font-size: 1.8em; }
.snowflake:nth-child(5) { left: 50%; animation-duration: 13s; animation-delay: 0s; }
.snowflake:nth-child(6) { left: 60%; animation-duration: 10s; animation-delay: 4s; font-size: 2.2em; }
.snowflake:nth-child(7) { left: 70%; animation-duration: 14s; animation-delay: 1s; }
.snowflake:nth-child(8) { left: 80%; animation-duration: 11s; animation-delay: 2s; font-size: 1.6em; }
.snowflake:nth-child(9) { left: 90%; animation-duration: 12s; animation-delay: 3s; }
.snowflake:nth-child(10) { left: 15%; animation-duration: 15s; animation-delay: 1s; }
.snowflake:nth-child(11) { left: 85%; animation-duration: 13s; animation-delay: 0s; }
.snowflake:nth-child(12) { left: 5%; animation-duration: 14s; animation-delay: 2s; font-size: 1.9em; }

@keyframes fall {
  0% {
    top: -10%;
    opacity: 0.8;
  }
  100% {
    top: 110%;
    opacity: 0;
  }
}

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

/* Navigation */
.navbar {
  background: rgba(26, 31, 46, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(100, 181, 246, 0.2);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}

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

.server-status-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 20px;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.status-dot.online {
  background: var(--online-green);
  box-shadow: 0 0 10px var(--online-green);
}

.status-dot.offline {
  background: var(--offline-red);
  box-shadow: 0 0 10px var(--offline-red);
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* Profile Menu */
.profile-menu {
  position: relative;
}

.profile-trigger {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.profile-trigger:hover {
  background: rgba(0, 0, 0, 0.5);
  border-color: var(--ice-blue);
}

.profile-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--ice-blue);
}

.profile-name {
  font-weight: 600;
  font-size: 0.95rem;
}

.dropdown-arrow {
  transition: transform 0.3s ease;
}

.profile-trigger:hover .dropdown-arrow {
  transform: translateY(2px);
}

.profile-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: rgba(26, 31, 46, 0.98);
  border: 1px solid rgba(100, 181, 246, 0.3);
  border-radius: 10px;
  min-width: 200px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1000;
  overflow: hidden;
}

.profile-dropdown.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1.2rem;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.dropdown-item:hover {
  background: rgba(100, 181, 246, 0.2);
  padding-left: 1.5rem;
}

.dropdown-item svg {
  opacity: 0.8;
}

.nav-brand h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--snow-white);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

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

.nav-menu a {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.nav-menu a:hover,
.nav-menu a.active {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-discord {
  background: #5865F2;
  color: white !important;
  padding: 0.6rem 1.5rem !important;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-discord:hover {
  background: #4752C4;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(88, 101, 242, 0.4);
}

/* Main Content */
main {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 200px);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 0;
  background: transparent;
  margin: 2rem auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-background {
  position: relative;
  background: linear-gradient(rgba(10, 14, 26, 0.7), rgba(26, 31, 46, 0.9)),
              url('https://images.unsplash.com/photo-1483728642387-6c3bdd6c93e5?w=1920&q=80') center/cover;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
}

.hero-content {
  text-align: center;
  padding: 4rem 2rem;
  z-index: 2;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
  }
  to {
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.8);
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.hero-date {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--ice-blue);
  font-weight: 600;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #4A90E2, #357ABD);
  color: white;
  box-shadow: 0 4px 15px rgba(74, 144, 226, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(74, 144, 226, 0.6);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

/* Countdown Section */
.countdown-section {
  padding: 3rem 0;
  text-align: center;
}

.countdown-section h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.countdown-item {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 2rem;
  min-width: 120px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.countdown-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(31, 38, 135, 0.5);
}

.countdown-value {
  display: block;
  font-size: 3rem;
  font-weight: 700;
  color: var(--ice-blue);
  text-shadow: 0 0 20px rgba(179, 229, 252, 0.5);
}

.countdown-label {
  display: block;
  font-size: 1rem;
  margin-top: 0.5rem;
  opacity: 0.9;
}

/* Content Grid Section */
.content-grid {
  padding: 3rem 0;
}

.grid-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.content-card {
  background: rgba(26, 31, 46, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(100, 181, 246, 0.2);
}

.content-card h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--ice-blue);
  border-bottom: 2px solid rgba(100, 181, 246, 0.3);
  padding-bottom: 0.5rem;
}

.content-card p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  opacity: 0.95;
}

/* Server Info Card */
.server-info-card {
  position: sticky;
  top: 100px;
}

.server-info-item {
  margin: 1.5rem 0;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 10px;
  border-left: 3px solid var(--ice-blue);
}

.server-info-item strong {
  display: block;
  color: var(--ice-blue);
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.server-info-item span {
  font-size: 1.2rem;
  font-weight: 600;
}

.copy-btn {
  background: rgba(100, 181, 246, 0.2);
  border: 1px solid var(--ice-blue);
  color: var(--ice-blue);
  padding: 0.4rem 1rem;
  border-radius: 5px;
  font-size: 0.85rem;
  cursor: pointer;
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}

.copy-btn:hover {
  background: rgba(100, 181, 246, 0.3);
  transform: translateY(-2px);
}

.players-online-list {
  margin-top: 1rem;
  max-height: 200px;
  overflow-y: auto;
}

.players-online-list ul {
  list-style: none;
  padding: 0;
}

.players-online-list li {
  padding: 0.6rem;
  background: rgba(0, 0, 0, 0.2);
  margin: 0.3rem 0;
  border-radius: 5px;
  font-size: 0.95rem;
}

/* About Section */
.about-section {
  padding: 4rem 0;
}

.about-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.about-content {
  background: rgba(26, 31, 46, 0.8);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(100, 181, 246, 0.2);
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(31, 38, 135, 0.5);
  border-color: var(--ice-blue);
}

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

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--ice-blue);
}

.feature-card p {
  opacity: 0.9;
  line-height: 1.6;
}

/* Server Info */
.server-info {
  background: rgba(74, 144, 226, 0.2);
  border-left: 4px solid var(--primary-color);
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem 0;
}

.server-info h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--ice-blue);
}

.server-info ul {
  list-style: none;
}

.server-info li {
  font-size: 1.1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.server-info li:last-child {
  border-bottom: none;
}

/* Important Note */
.important-note {
  background: rgba(255, 193, 7, 0.2);
  border-left: 4px solid #FFC107;
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem 0;
}

.important-note h3 {
  color: #FFD54F;
  margin-bottom: 1rem;
}

.important-note a {
  color: var(--ice-blue);
  text-decoration: underline;
}

/* Server Status Section */
.server-status-section {
  padding: 3rem 0;
}

.server-status-section h2 {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.server-status {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.status-loading {
  text-align: center;
  font-size: 1.2rem;
  padding: 2rem;
  opacity: 0.8;
}

.status-online,
.status-offline {
  text-align: center;
  padding: 2rem;
}

.status-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.status-badge.online {
  background: rgba(76, 175, 80, 0.3);
  border: 2px solid #4CAF50;
  color: #81C784;
}

.status-badge.offline {
  background: rgba(244, 67, 54, 0.3);
  border: 2px solid #F44336;
  color: #E57373;
}

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

.server-detail-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
}

.server-detail-item strong {
  display: block;
  color: var(--ice-blue);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.players-list {
  margin-top: 1.5rem;
}

.players-list h4 {
  color: var(--ice-blue);
  margin-bottom: 1rem;
}

.players-list ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.players-list li {
  background: rgba(255, 255, 255, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
}

/* Rules Section */
.rules-section {
  padding: 3rem 0;
}

.rules-section h1 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 2rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.rules-intro {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 3rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.rules-intro p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.rules-intro .highlight {
  background: rgba(255, 193, 7, 0.2);
  padding: 1rem;
  border-radius: 10px;
  border-left: 4px solid #FFC107;
  margin-top: 1rem;
}

.rule-category {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.rule-category h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  color: var(--ice-blue);
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 1rem;
}

.category-desc {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.rule-subsection {
  margin: 2rem 0;
}

.rule-subsection h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--ice-blue);
}

.rule-list {
  list-style: none;
  padding-left: 0;
}

.rule-list li {
  padding: 0.8rem 0 0.8rem 2rem;
  position: relative;
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.rule-list li:before {
  content: "❄️";
  position: absolute;
  left: 0;
}

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

/* Mod Info */
.mod-info {
  background: rgba(74, 144, 226, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.mod-info h4 {
  color: var(--ice-blue);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.mod-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 1rem;
}

.mod-allowed,
.mod-forbidden {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 10px;
}

.mod-allowed {
  border-left: 4px solid #4CAF50;
}

.mod-forbidden {
  border-left: 4px solid #F44336;
}

.mod-allowed strong,
.mod-forbidden strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.mod-allowed ul,
.mod-forbidden ul {
  list-style: none;
  padding-left: 0;
}

.mod-allowed li,
.mod-forbidden li {
  padding: 0.3rem 0;
  font-size: 0.95rem;
}

/* Consequences */
.consequences {
  background: rgba(244, 67, 54, 0.1);
  border: 2px solid rgba(244, 67, 54, 0.3);
}

/* Codeword Reminder */
.codeword-reminder {
  background: linear-gradient(135deg, rgba(74, 144, 226, 0.2), rgba(127, 179, 213, 0.2));
  border: 2px solid var(--primary-color);
  border-radius: 20px;
  padding: 2.5rem;
  text-align: center;
  margin: 2rem 0;
  box-shadow: 0 8px 32px rgba(74, 144, 226, 0.3);
}

.codeword-reminder h2 {
  color: var(--ice-blue);
  margin-bottom: 1rem;
}

.codeword-reminder p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.codeword-reminder .warning {
  color: #FFD54F;
  font-weight: 600;
  font-size: 1.1rem;
}

/* Rules Footer */
.rules-footer {
  text-align: center;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.rules-footer p {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

/* Dashboard Section */
.dashboard-section {
  padding: 3rem 0;
}

.dashboard-section h1 {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 2rem;
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.user-info {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 2rem;
}

.user-avatar img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid var(--ice-blue);
  box-shadow: 0 0 20px rgba(179, 229, 252, 0.5);
}

.avatar-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  border: 4px solid var(--ice-blue);
}

.user-details h2 {
  font-size: 2rem;
  color: var(--ice-blue);
  margin-bottom: 0.5rem;
}

.user-details p {
  opacity: 0.9;
  margin: 0.3rem 0;
}

.dashboard-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.dashboard-content h3 {
  font-size: 1.8rem;
  color: var(--ice-blue);
  margin-bottom: 1rem;
}

.dashboard-content p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.quick-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Footer */
footer {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding: 2rem 0;
  text-align: center;
  margin-top: 4rem;
}

footer p {
  margin: 0.5rem 0;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 968px) {
  .grid-container {
    grid-template-columns: 1fr;
  }

  .server-info-card {
    position: static;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .countdown {
    gap: 1rem;
  }

  .countdown-item {
    min-width: 100px;
    padding: 1.5rem;
  }

  .countdown-value {
    font-size: 2rem;
  }

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

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

  .user-info {
    flex-direction: column;
    text-align: center;
  }

  .server-details {
    grid-template-columns: 1fr;
  }

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

  .hero-background {
    min-height: 400px;
  }

  .content-card {
    padding: 1.5rem;
  }
}

/* ======================
   VERIFICATION SYSTEM
   ====================== */

/* Verify Section */
.verify-section {
  padding: 3rem 0;
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
}

.verify-card {
  background: rgba(26, 31, 46, 0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(100, 181, 246, 0.2);
  max-width: 800px;
  margin: 0 auto;
  width: 100%;
}

.verify-header {
  text-align: center;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 2px solid rgba(100, 181, 246, 0.3);
}

.verify-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--ice-blue);
  text-shadow: 0 0 20px rgba(100, 181, 246, 0.3);
}

.player-name {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-top: 0.5rem;
}

.player-name strong {
  color: var(--ice-blue);
  font-weight: 600;
}

.verify-content {
  margin-top: 2rem;
}

/* Info Boxes */
.info-box {
  background: rgba(74, 144, 226, 0.1);
  border-left: 4px solid var(--primary-color);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.info-box h2 {
  color: var(--ice-blue);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.info-box h3 {
  color: var(--ice-blue);
  font-size: 1.2rem;
  margin: 1rem 0 0.5rem 0;
}

.info-box ul {
  list-style: none;
  padding-left: 0;
}

.info-box li {
  padding: 0.5rem 0;
  font-size: 1.05rem;
  opacity: 0.95;
}

.rules-info {
  margin-top: 1rem;
}

.warning-box {
  background: rgba(255, 193, 7, 0.1);
  border-left: 4px solid #FFC107;
  padding: 1.2rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.warning-box strong {
  color: #FFD54F;
}

/* Start Button */
.start-button-container {
  text-align: center;
  margin-top: 2.5rem;
}

.btn-large {
  font-size: 1.2rem;
  padding: 1.2rem 3rem;
}

.btn-success {
  background: linear-gradient(135deg, #4CAF50, #45a049);
  color: white;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
}

.btn-success:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6);
}

/* Quiz Container */
.quiz-container {
  margin: 2rem 0;
  min-height: 400px;
}

.quiz-progress {
  display: inline-block;
  background: rgba(100, 181, 246, 0.2);
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1rem;
}

.quiz-progress span {
  color: var(--ice-blue);
}

.quiz-question {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 15px;
  padding: 2rem;
}

.question-text {
  font-size: 1.4rem;
  color: var(--ice-blue);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.question-type {
  font-size: 1rem;
  opacity: 0.8;
  font-style: italic;
  margin-bottom: 1.5rem;
  color: #FFD54F;
}

.answers-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.answer-option {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.answer-option:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--ice-blue);
  transform: translateX(5px);
}

.answer-option.selected {
  background: rgba(74, 144, 226, 0.2);
  border-color: var(--ice-blue);
  box-shadow: 0 0 15px rgba(74, 144, 226, 0.3);
}

.answer-option input[type="radio"],
.answer-option input[type="checkbox"] {
  margin-right: 1rem;
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: var(--ice-blue);
}

.answer-text {
  font-size: 1.1rem;
  line-height: 1.5;
  flex: 1;
}

/* Quiz Navigation */
.quiz-navigation {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.quiz-navigation button {
  flex: 1;
  max-width: 200px;
}

.quiz-navigation button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Success Card */
.success-card {
  border: 2px solid rgba(76, 175, 80, 0.5);
}

.success-icon {
  font-size: 5rem;
  text-align: center;
  margin-bottom: 1rem;
  animation: success-bounce 0.6s ease;
}

@keyframes success-bounce {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.success-card h1 {
  color: #4CAF50;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.success-message {
  text-align: center;
  font-size: 1.3rem;
  margin: 1.5rem 0;
  opacity: 0.95;
}

.success-content {
  margin-top: 2rem;
}

.success-info {
  background: rgba(76, 175, 80, 0.1);
  border-left: 4px solid #4CAF50;
}

.steps-list {
  padding-left: 1.5rem;
  margin-top: 1rem;
}

.steps-list li {
  font-size: 1.1rem;
  padding: 0.5rem 0;
  line-height: 1.6;
}

.server-info-box {
  background: rgba(100, 181, 246, 0.1);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  margin-top: 1.5rem;
}

.server-info-box p {
  font-size: 1.1rem;
  margin: 0.5rem 0;
}

.server-info-box strong {
  color: var(--ice-blue);
}

/* Failed Card */
.failed-card {
  border: 2px solid rgba(244, 67, 54, 0.5);
}

.failed-icon {
  font-size: 5rem;
  text-align: center;
  margin-bottom: 1rem;
  animation: shake 0.5s ease;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-10px); }
  75% { transform: translateX(10px); }
}

.failed-card h1 {
  color: #F44336;
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.failed-message {
  text-align: center;
  font-size: 1.2rem;
  margin: 1.5rem 0;
  opacity: 0.95;
}

.failed-content {
  margin-top: 2rem;
}

.tips-box {
  background: rgba(100, 181, 246, 0.1);
  border-left: 4px solid var(--ice-blue);
  border-radius: 10px;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.tips-box h2 {
  color: var(--ice-blue);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

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

.tips-box li {
  padding: 0.5rem 0 0.5rem 1.5rem;
  position: relative;
  font-size: 1.05rem;
}

.tips-box li:before {
  content: "💡";
  position: absolute;
  left: 0;
}

/* Error Card */
.error-card {
  border: 2px solid rgba(255, 152, 0, 0.5);
}

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

.error-card h1 {
  color: #FF9800;
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.error-message {
  text-align: center;
  font-size: 1.1rem;
  margin: 1rem 0;
  opacity: 0.95;
}

.error-content {
  margin-top: 2rem;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.action-buttons .btn {
  min-width: 150px;
}

/* Responsive Design for Verify */
@media (max-width: 768px) {
  .verify-card {
    padding: 1.5rem;
  }

  .verify-header h1 {
    font-size: 2rem;
  }

  .question-text {
    font-size: 1.2rem;
  }

  .answer-text {
    font-size: 1rem;
  }

  .quiz-navigation {
    flex-direction: column;
  }

  .quiz-navigation button {
    max-width: 100%;
  }

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

  .action-buttons .btn {
    width: 100%;
  }

  .success-card h1,
  .failed-card h1,
  .error-card h1 {
    font-size: 2rem;
  }
}
