* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Navigation Styles */
nav {
  background-color: #0f172a;
  border-bottom: 1px solid #475569;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1rem;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 64px;
}

.logo {
  height: 50px;
  width: auto;
}

.nav-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.welcome-text {
  color: white;
  margin-right: 0.5rem;
  white-space: nowrap;
  display: flex;
  align-items: center;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  color: white;
  font-size: 16px;
  min-width: 110px;
  height: 42px;
  flex-shrink: 0;
}

.btn-login {
  background-color: #fbbf24;
}

.btn-login:hover {
  background-color: #fde047;
}

.btn-register {
  background-color: #fb923c;
}

.btn-register:hover {
  background-color: #f97316;
}

.btn-logout {
  background-color: #3b82f6;
}

.btn-logout:hover {
  background-color: #2563eb;
}

.btn-profile {
  background: linear-gradient(135deg, #fbbf24, #fb923c);
  transition: all 0.3s ease;
}

.btn-profile:hover {
  background: linear-gradient(135deg, #fde047, #f97316);
  transform: translateY(-2px);
}

.btn-home {
  background: linear-gradient(135deg, #10b981, #059669);
  transition: all 0.3s ease;
}

.btn-home:hover {
  background: linear-gradient(135deg, #34d399, #10b981);
  transform: translateY(-2px);
}

.logo {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

/* Alert Messages */
.alert {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 500;
  z-index: 9999;
  min-width: 300px;
  max-width: 90%;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

.alert-error {
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

.alert-success {
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

/* Modal Styles */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-content {
  background-color: #0f172a;
  padding: 2rem;
  border-radius: 0.5rem;
  width: 90%;
  max-width: 400px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-size: 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  color: #fff;
}

.modal-title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  text-align: center;
}

.modal-title.title-login {
  color: #fbbf24;
}

.modal-title.title-register {
  color: #fb923c;
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: #fff;
  font-weight: 500;
}

.form-input {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #cbd5e1;
  border-radius: 0.375rem;
  font-size: 1rem;
  background-color: #334155;
  color: #fff;
}

.form-input:focus {
  outline: none;
  border-color: #3b82f6;
}

.btn-submit {
  width: 100%;
  padding: 0.75rem;
  background-color: #3b82f6;
  color: white;
  border: none;
  border-radius: 0.375rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.btn-submit.submit-login {
  background-color: #fbbf24;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit.submit-login:hover {
  background-color: #fde047;
}

.btn-submit.submit-register {
  background-color: #fb923c;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit.submit-register:hover {
  background-color: #f97316;
}

.btn-submit:hover {
  background-color: #2563eb;
}

.modal-switch {
  text-align: center;
  margin-top: 1rem;
  color: #64748b;
}

.modal-switch a {
  color: #3b82f6;
  cursor: pointer;
  text-decoration: none;
}

.modal-switch a:hover {
  text-decoration: underline;
}

.error-message {
  color: #dc2626;
  font-size: 0.875rem;
  margin: 0.5rem 0;
  padding: 0.75rem 1rem;
  background-color: #fef2f2;
  border: 2px solid #ef4444;
  border-radius: 0.375rem;
  display: none;
}

.success-message {
  color: #10b981;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1600px;
  margin: 0 auto;
  padding: 5rem 1rem;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-left {
  text-align: left;
}

.hero-tagline {
  margin-bottom: 1.5rem;
}

.tagline-1 {
  font-size: 1.875rem;
  font-weight: bold;
  color: white;
  margin-bottom: 0.25rem;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

.tagline-2 {
  font-size: 1.875rem;
  font-weight: bold;
  color: #fbbf24;
  margin-bottom: 1rem;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .tagline-1,
  .tagline-2 {
    font-size: 2.25rem;
  }
}

.hero-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }
}

.hero-description {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  max-width: 40rem;
  line-height: 1.75;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.125rem;
  }
}

.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .download-buttons {
    flex-direction: row;
  }
}

.download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  transition: all 0.2s;
  text-decoration: none;
  color: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.download-btn:hover {
  transform: scale(1.05);
}

.download-android {
  background-color: #22c55e;
}

.download-android:hover {
  background-color: #16a34a;
}

.download-ios {
  background-color: #000;
}

.download-ios:hover {
  background-color: #1f2937;
}

.download-icon {
  width: 24px;
  height: 24px;
  font-size: 24px;
}

.download-text {
  text-align: left;
}

.download-label {
  font-size: 0.75rem;
}

.download-platform {
  font-weight: bold;
  font-size: 1.125rem;
}

.hero-right {
  text-align: right;
}

.hero-logo {
  margin-bottom: 2rem;
}

.logo-large {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 25px rgba(0, 0, 0, 0.5));
}

/* Main Content */
.main-content {
  max-width: 1600px;
  margin: 0 auto;
  padding: 5rem 1rem;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background-color: white;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #e5e7eb;
  transition: box-shadow 0.2s;
}

.feature-card:hover {
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 0.75rem;
}

.feature-description {
  color: #4b5563;
}

/* Section Header */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #0f172a;
  margin-bottom: 1rem;
}

.section-description {
  color: #64748b;
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Training System Section */
.training-section {
  margin-bottom: 5rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 4rem 2rem;
  border-radius: 1.5rem;
}

.training-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1500px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .training-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .training-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.training-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  border: 2px solid #e5e7eb;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: center;
  align-items: center;
}

.training-card:hover {
  transform: translateY(-5px);
  border-color: #fbbf24;
  box-shadow: 0 20px 25px rgba(251, 191, 36, 0.2);
}

.training-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #fbbf24 0%, #fb923c 100%);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: white;
  margin-bottom: 1.5rem;
  transition: transform 0.3s ease;
}

.training-card:hover .training-icon {
  transform: rotate(10deg) scale(1.1);
}

.training-title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.75rem;
  text-align: center;
}

.training-text {
  color: #64748b;
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
  text-align: center;
}

.training-badge {
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: auto;
}

/* Community Section */ /* Community Section */
.community-section {
  background: #0f172a;
  padding: 4rem 2rem;
  border-radius: 1.5rem;
  margin-bottom: 5rem;
}

.community-content {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .community-content {
    grid-template-columns: 1fr 1fr;
  }
}

.community-left {
  color: white;
}

.community-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
  color: white;
}

.community-text {
  font-size: 1.125rem;
  color: #cbd5e1;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.community-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.community-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: white;
  font-size: 1.125rem;
}

.community-feature i {
  color: #fbbf24;
  font-size: 1.5rem;
}

.community-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: linear-gradient(135deg, #fbbf24 0%, #fb923c 100%);
  color: #0f172a;
  font-weight: bold;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(251, 191, 36, 0.3);
}

.community-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(251, 191, 36, 0.4);
}

.community-right {
  display: flex;
  justify-content: center;
}

.community-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  width: 100%;
}

@media (min-width: 640px) {
  .community-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .community-stats {
    grid-template-columns: 1fr;
  }
}

.stat-box {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-box:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fbbf24;
  transform: scale(1.05);
}

.stat-value {
  font-size: 3rem;
  font-weight: bold;
  color: #fbbf24;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #cbd5e1;
  font-size: 1rem;
}

/* Download Section */
.download-section {
  background-color: white;
  border-radius: 1.5rem;
  padding: 3rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.download-section-title {
  font-size: 2.25rem;
  font-weight: bold;
  color: #111827;
  text-align: center;
  margin-bottom: 2rem;
}

.download-section-description {
  color: #4b5563;
  text-align: center;
  margin-bottom: 2.5rem;
  font-size: 1.125rem;
}

.download-section-buttons {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 640px) {
  .download-section-buttons {
    flex-direction: row;
  }
}

.download-section-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 1.125rem;
  transition: all 0.2s;
  text-decoration: none;
  color: white;
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.1);
}

.download-section-btn:hover {
  transform: scale(1.05);
}

.download-section-btn i {
  font-size: 1.5rem;
}

.download-section-android {
  background-color: #22c55e;
}

.download-section-android:hover {
  background-color: #16a34a;
}

.download-section-ios {
  background-color: #000;
}

.download-section-ios:hover {
  background-color: #1f2937;
}

.download-section-text {
  text-align: left;
}

.download-section-label {
  font-size: 0.875rem;
}

.download-section-platform {
  font-weight: bold;
  font-size: 1.25rem;
}

.download-disclaimer {
  color: #6b7280;
  text-align: center;
  margin-top: 2rem;
  font-size: 0.875rem;
}

/* Tutorial Section */
.tutorial-section {
  max-width: 1600px;
  margin: 0 auto;
  padding: 5rem 1rem;
}

.tutorial-header {
  text-align: center;
  margin-bottom: 3rem;
}

.tutorial-badge {
  display: inline-block;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.tutorial-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 1rem;
}

.tutorial-header p {
  font-size: 1.125rem;
  color: #64748b;
  max-width: 600px;
  margin: 0 auto;
}

.tutorial-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .tutorial-content {
    grid-template-columns: 1fr 1fr;
  }
}

.tutorial-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tutorial-step {
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  border-left: 4px solid #fbbf24;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.tutorial-step:hover {
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
  transform: translateX(5px);
}

.tutorial-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.tutorial-step-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.tutorial-step-description {
  color: #64748b;
  line-height: 1.6;
}

.tutorial-step-list {
  list-style: none;
  margin-top: 0.75rem;
  counter-reset: step-counter;
}

.tutorial-step-list li {
  color: #64748b;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
  counter-increment: step-counter;
}

.tutorial-step-list li:before {
  content: counter(step-counter) ".";
  position: absolute;
  left: 0;
  color: #fbbf24;
  font-weight: bold;
}

.tutorial-video {
  width: 100%;
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  background: #000;
}

.tutorial-video iframe {
  display: block;
  border: none;
}

/* Profile Page */
.profile-section {
  min-height: calc(100vh - 200px);
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  padding: 3rem 1rem;
}

.profile-container {
  max-width: 800px;
  margin: 0 auto;
}

.profile-header {
  text-align: center;
  margin-bottom: 3rem;
}

.profile-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.profile-subtitle {
  font-size: 1.125rem;
  color: #64748b;
}

.profile-card {
  background: white;
  border-radius: 1.5rem;
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
}

.profile-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.profile-item {
  padding: 1.5rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 1rem;
  border-left: 4px solid #fbbf24;
}

.profile-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.5rem;
}

.profile-value {
  font-size: 1.25rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 1rem;
}

.profile-edit-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #fbbf24 0%, #fb923c 100%);
  color: #0f172a;
  border: none;
  border-radius: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.profile-edit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(251, 191, 36, 0.3);
}

/* Modal Styles - Update */
.modal-title.title-email {
  color: #fbbf24;
}

.modal-title.title-password {
  color: #fb923c;
}

.btn-submit.submit-email {
  background-color: #fbbf24;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit.submit-email:hover {
  background-color: #fde047;
}

.btn-submit.submit-password {
  background-color: #fb923c;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-submit.submit-password:hover {
  background-color: #f97316;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 4rem;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.25rem;
  font-weight: bold;
  color: #111827;
  margin-bottom: 0.5rem;
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  border-top: 2px solid #fbbf24;
  margin-top: 5rem;
  padding: 3rem 0;
}

.footer-content {
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-main {
    grid-template-columns: repeat(3, 1fr);
  }
}

.footer-section h3 {
  color: #fbbf24;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: #cbd5e1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: #fbbf24;
}

.footer-section p {
  color: #cbd5e1;
  line-height: 1.6;
  font-size: 0.95rem;
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin: 2rem 0;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    text-align: left;
  }
}

.footer-text {
  color: #94a3b8;
  font-size: 0.9rem;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-socials {
    justify-content: flex-end;
  }
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #fbbf24 0%, #fb923c 100%);
  border-radius: 50%;
  color: white;
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(251, 191, 36, 0.3);
}
