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

:root {
  --primary: #005ebb;
  --primary-dark: #003c8e;
  --primary-light: #0077cc;
  --secondary: #ff6b35;
  --accent: #00d4aa;
  --dark: #002759;
  --white: #ffffff;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #212529;
  --success: #28a745;
  --warning: #ffc107;
  --danger: #dc3545;
  --info: #17a2b8;
  
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--white);
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
  position: relative;
}

/* Canvas Background */
canvas#bgCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

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

/* Glass Morphism */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: var(--glass-shadow);
}

/* Splash Screen */
.splash-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary-dark) 100%);
}

.splash-content {
  text-align: center;
  max-width: 500px;
  padding: 2rem;
}

.splash-logo {
  width: 120px;
  height: 120px;
  opacity: 0;
  transform: scale(0.3);
  margin-bottom: 2rem;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.splash-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(30px);
  background: linear-gradient(135deg, var(--white) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.splash-sub {
  font-size: 1.1rem;
  opacity: 0;
  transform: translateY(30px);
  color: var(--gray-300);
  margin-bottom: 2rem;
}

.splash-loading {
  width: 200px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}

.loading-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  border-radius: 2px;
  animation: loading 2s ease-in-out infinite;
}

@keyframes loading {
  0% { width: 0%; }
  50% { width: 100%; }
  100% { width: 0%; }
}

/* Header */
header {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  z-index: 100;
  transition: var(--transition);
}

header .brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 1.1rem;
}

header .brand img {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

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

header nav a {
  text-decoration: none;
  color: var(--white);
  font-weight: 400;
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition);
  padding: 0.5rem 0;
}

header nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transition: var(--transition);
  border-radius: 1px;
}

header nav a:hover::after {
  width: 100%;
}

header nav a:hover {
  color: var(--accent);
  transform: translateY(-2px);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: var(--transition);
}

.burger:hover {
  background: rgba(255, 255, 255, 0.1);
}

.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 1px;
}

/* Main Content */
#main-content {
  padding-top: 100px;
  min-height: 100vh;
}

.section-container {
  padding: 4rem 0;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.content-box {
  padding: 3rem 2rem;
  margin-bottom: 2rem;
  transition: var(--transition);
}

.content-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

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

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--white) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  margin: 0 auto;
  border-radius: 2px;
}

/* Content Grid */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.text-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--gray-200);
}

.image-placeholder {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  height: 300px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.image-placeholder p {
  font-size: 1.2rem;
  margin-top: 1rem;
  font-weight: 500;
}

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

.activity-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.activity-card:hover {
  transform: translateY(-10px) scale(1.02);
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
}

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

.activity-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--white);
}

.activity-card p {
  color: var(--gray-300);
  line-height: 1.6;
}

/* Counter Section */
.counter-container {
  text-align: center;
  margin-bottom: 3rem;
}

.counter-display {
  margin-bottom: 2rem;
}

.counter {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 4px;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--white);
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.counter span {
  display: inline-block;
  transform: translateY(100%);
  opacity: 0;
  animation: counterSlide 0.5s ease-out forwards;
}

@keyframes counterSlide {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.counter-label {
  font-size: 1.2rem;
  color: var(--gray-300);
  font-weight: 500;
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(220, 53, 69, 0.2);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(220, 53, 69, 0.3);
  font-size: 0.9rem;
  font-weight: 500;
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--danger);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Individual Counters */
.individual-counters-section {
  margin: 2rem 0;
}

.individual-counters-section h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: var(--white);
  text-align: center;
}

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

.individual-counter {
  background: rgba(255, 255, 255, 0.05);
  padding: 1.5rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
  animation: fadeInUp 0.6s ease-out;
}

.individual-counter:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

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

.counter-info {
  flex: 1;
}

.counter-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.counter-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

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

.recent-votes {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.recent-votes h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.recent-votes-list {
  max-height: 200px;
  overflow-y: auto;
}

.recent-vote-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
  animation: slideInRight 0.5s ease-out;
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Login Form */
.login-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.login-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--white);
}

.form-group input {
  width: 100%;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.1);
}

.form-group input::placeholder {
  color: var(--gray-400);
}

.login-info {
  background: rgba(0, 123, 255, 0.1);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(0, 123, 255, 0.2);
}

.login-info h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.login-info p {
  margin-bottom: 0.5rem;
  color: var(--gray-300);
  font-size: 0.95rem;
}

/* Vote Form */
.vote-container {
  max-width: 600px;
  margin: 0 auto;
}

.welcome-message {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: var(--accent);
  font-weight: 500;
}

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

.vote-option {
  cursor: pointer;
  transition: var(--transition);
}

.vote-option input[type="radio"] {
  display: none;
}

.option-content {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: var(--transition);
}

.vote-option:hover .option-content {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--accent);
  transform: translateX(10px);
}

.vote-option input[type="radio"]:checked + .option-content {
  background: rgba(0, 212, 170, 0.2);
  border-color: var(--accent);
  box-shadow: 0 0 20px rgba(0, 212, 170, 0.3);
}

.option-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
}

.option-text h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.option-text p {
  color: var(--gray-300);
  font-size: 0.95rem;
}

.vote-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  position: relative;
  padding: 1rem 2rem;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--white);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  box-shadow: 0 4px 15px rgba(0, 94, 187, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 94, 187, 0.4);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

.btn-danger {
  background: linear-gradient(135deg, var(--danger) 0%, #ff4757 100%);
  box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.btn-danger:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
}

.btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:active .btn-ripple {
  width: 300px;
  height: 300px;
}

.btn-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* Results */
.result-container {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.result-container ul {
  list-style: none;
}

.result-container li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  margin-bottom: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
  transition: var(--transition);
}

.result-container li:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateX(5px);
}

/* FAQ */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--accent);
}

.faq-item summary {
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 500;
  color: var(--white);
  position: relative;
  transition: var(--transition);
}

.faq-item summary:hover {
  background: rgba(255, 255, 255, 0.05);
}

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--accent);
  transition: var(--transition);
}

.faq-item[open] summary::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-item p {
  padding: 0 1.5rem 1.5rem;
  color: var(--gray-300);
  line-height: 1.6;
}

/* Contact */
.contact-grid {
  max-width: 800px;
  margin: 0 auto;
}

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

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.contact-icon {
  font-size: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 212, 170, 0.2);
  border-radius: 12px;
}

.contact-item h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.contact-item p {
  color: var(--gray-300);
  line-height: 1.5;
}

/* Admin Section */
.admin-container {
  max-width: 1000px;
  margin: 0 auto;
}

.admin-login {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}

.admin-form {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

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

.admin-action-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.admin-action-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
}

.admin-action-card h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.admin-action-card p {
  color: var(--gray-300);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.options-list {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  max-height: 200px;
  overflow-y: auto;
}

.option-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--accent);
}

.option-item:last-child {
  margin-bottom: 0;
}

.option-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.option-details h5 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--white);
}

.option-details p {
  font-size: 0.9rem;
  color: var(--gray-300);
  margin: 0;
}

.remove-option {
  background: var(--danger);
  color: var(--white);
  border: none;
  padding: 0.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: var(--transition);
}

.remove-option:hover {
  background: #ff4757;
  transform: scale(1.1);
}

.activities-list {
  background: rgba(255, 255, 255, 0.05);
  padding: 1rem;
  border-radius: 8px;
  margin-bottom: 1rem;
  max-height: 200px;
  overflow-y: auto;
}

.activity-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border-left: 3px solid var(--primary);
}

.activity-item:last-child {
  margin-bottom: 0;
}

.activity-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.activity-details h5 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
  color: var(--white);
}

.activity-details p {
  font-size: 0.9rem;
  color: var(--gray-300);
  margin: 0;
}

.edit-activity {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 0.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: var(--transition);
  margin-right: 0.5rem;
}

.edit-activity:hover {
  background: var(--accent);
  transform: scale(1.1);
}

.remove-activity {
  background: var(--danger);
  color: var(--white);
  border: none;
  padding: 0.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.8rem;
  transition: var(--transition);
}

.remove-activity:hover {
  background: #ff4757;
  transform: scale(1.1);
}

.admin-link {
  color: var(--accent) !important;
  font-weight: 600;
}

/* Vote Success Message */
.vote-success-message {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
  padding: 1rem 2rem;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
  z-index: 1000;
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.success-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.success-icon {
  font-size: 1.2rem;
}

.success-text {
  font-weight: 600;
  font-size: 1.1rem;
}

/* Footer */
footer {
  margin-top: 4rem;
  padding: 3rem 2rem;
  text-align: center;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 1.2rem;
}

.footer-brand img {
  width: 40px;
  height: 40px;
}

footer p {
  color: var(--gray-400);
  font-size: 0.95rem;
}

/* Error Messages */
.error {
  color: var(--danger);
  margin-top: 0.5rem;
  font-size: 0.9rem;
  text-align: center;
}

/* Utility Classes */
.hidden {
  display: none !important;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .login-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .activities-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 768px) {
  html {
    font-size: 14px;
  }
  
  header {
    padding: 0.75rem 1rem;
    top: 10px;
  }
  
  header nav {
    display: none;
  }
  
  header.nav-open nav {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 12px;
    margin-top: 1rem;
    padding: 1rem;
    border: 1px solid var(--glass-border);
  }
  
  header.nav-open nav ul {
    flex-direction: column;
    gap: 1rem;
  }
  
  .burger {
    display: flex;
  }
  
  .section-container {
    padding: 2rem 1rem;
  }
  
  .content-box {
    padding: 2rem 1.5rem;
  }
  
  .splash-title {
    font-size: 2rem;
  }
  
  .counter {
    font-size: 3rem;
    letter-spacing: 2px;
  }
  
  .individual-counters-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
  }
  
  .individual-counter {
    padding: 1rem;
  }
  
  .counter-icon {
    font-size: 2rem;
  }
  
  .counter-number {
    font-size: 1.5rem;
  }
  
  .vote-actions {
    flex-direction: column;
  }
  
  .btn-row {
    flex-direction: column;
  }
  
  .contact-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .splash-title {
    font-size: 1.8rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .counter {
    font-size: 2.5rem;
    letter-spacing: 1px;
  }
  
  .individual-counters-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .individual-counter {
    padding: 0.75rem;
  }
  
  .counter-icon {
    font-size: 1.5rem;
  }
  
  .counter-number {
    font-size: 1.25rem;
  }
  
  .content-box {
    padding: 1.5rem 1rem;
  }
  
  .vote-options {
    gap: 0.75rem;
  }
  
  .option-content {
    padding: 1rem;
  }
  
  .option-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }
}

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Scroll Animations */
[data-aos] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos].aos-animate {
  opacity: 1;
}

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

::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}
