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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: #040608;
  color: #fff;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Top Bar */
.top-bar {
  background-color: #0c0c0f;
  border-bottom: 1px solid #1d2021;
  padding: 12px 0;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 10;
}

.top-bar p {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  letter-spacing: 0.5px;
}

/* Animated Background */
body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.04) 0%, transparent 45%),
    radial-gradient(circle at 45% 15%, rgba(255, 255, 255, 0.03) 0%, transparent 35%),
    radial-gradient(circle at 70% 85%, rgba(255, 255, 255, 0.045) 0%, transparent 40%),
    radial-gradient(circle at 10% 60%, rgba(255, 255, 255, 0.025) 0%, transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(255, 255, 255, 0.02) 0%, transparent 25%);
  z-index: -2;
}

/* Grid Pattern */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 100px 100px;
  z-index: -1;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(100px, 100px);
  }
}

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

.particle {
  position: absolute;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: float 20s infinite linear;
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.3);
  will-change: transform, opacity;
  transform: translateZ(0);
}

.particle:nth-child(1) {
  width: 1px;
  height: 1px;
  left: 8%;
  top: 20%;
  animation-delay: 0s;
  animation-duration: 22s;
  animation-name: float1;
}

.particle:nth-child(2) {
  width: 1.5px;
  height: 1.5px;
  left: 25%;
  top: 60%;
  animation-delay: 0s;
  animation-duration: 28s;
  animation-name: float2;
}

.particle:nth-child(3) {
  width: 2px;
  height: 2px;
  left: 45%;
  top: 10%;
  animation-delay: 0s;
  animation-duration: 19s;
  animation-name: float3;
}

.particle:nth-child(4) {
  width: 1px;
  height: 1px;
  left: 65%;
  top: 80%;
  animation-delay: 0s;
  animation-duration: 31s;
  animation-name: float4;
}

.particle:nth-child(5) {
  width: 1.5px;
  height: 1.5px;
  left: 85%;
  top: 40%;
  animation-delay: 0s;
  animation-duration: 24s;
  animation-name: float5;
}

.particle:nth-child(6) {
  width: 1px;
  height: 1px;
  left: 12%;
  top: 70%;
  animation-delay: 0s;
  animation-duration: 26s;
  animation-name: float6;
}

.particle:nth-child(7) {
  width: 2px;
  height: 2px;
  left: 35%;
  top: 30%;
  animation-delay: 0s;
  animation-duration: 20s;
  animation-name: float7;
}

.particle:nth-child(8) {
  width: 1px;
  height: 1px;
  left: 55%;
  top: 90%;
  animation-delay: 0s;
  animation-duration: 29s;
  animation-name: float8;
}

.particle:nth-child(9) {
  width: 1.5px;
  height: 1.5px;
  left: 75%;
  top: 15%;
  animation-delay: 0s;
  animation-duration: 25s;
  animation-name: float9;
}

.particle:nth-child(10) {
  width: 1px;
  height: 1px;
  left: 95%;
  top: 50%;
  animation-delay: 0s;
  animation-duration: 27s;
  animation-name: float10;
}

.particle:nth-child(11) {
  width: 1.5px;
  height: 1.5px;
  left: 18%;
  top: 35%;
  animation-delay: 5s;
  animation-duration: 23s;
  animation-name: float1;
}

.particle:nth-child(12) {
  width: 1px;
  height: 1px;
  left: 42%;
  top: 75%;
  animation-delay: 8s;
  animation-duration: 30s;
  animation-name: float2;
}

.particle:nth-child(13) {
  width: 2px;
  height: 2px;
  left: 68%;
  top: 25%;
  animation-delay: 3s;
  animation-duration: 21s;
  animation-name: float3;
}

.particle:nth-child(14) {
  width: 1px;
  height: 1px;
  left: 88%;
  top: 85%;
  animation-delay: 7s;
  animation-duration: 26s;
  animation-name: float4;
}

.particle:nth-child(15) {
  width: 1.5px;
  height: 1.5px;
  left: 5%;
  top: 55%;
  animation-delay: 2s;
  animation-duration: 29s;
  animation-name: float5;
}

.particle:nth-child(16) {
  width: 1px;
  height: 1px;
  left: 38%;
  top: 45%;
  animation-delay: 6s;
  animation-duration: 24s;
  animation-name: float6;
}

.particle:nth-child(17) {
  width: 2px;
  height: 2px;
  left: 72%;
  top: 65%;
  animation-delay: 4s;
  animation-duration: 22s;
  animation-name: float7;
}

.particle:nth-child(18) {
  width: 1px;
  height: 1px;
  left: 92%;
  top: 15%;
  animation-delay: 9s;
  animation-duration: 28s;
  animation-name: float8;
}

.particle:nth-child(19) {
  width: 1.5px;
  height: 1.5px;
  left: 22%;
  top: 85%;
  animation-delay: 1s;
  animation-duration: 25s;
  animation-name: float9;
}

.particle:nth-child(20) {
  width: 1px;
  height: 1px;
  left: 58%;
  top: 5%;
  animation-delay: 10s;
  animation-duration: 31s;
  animation-name: float10;
}

@keyframes float1 {
  0% { transform: translateY(0) translateX(0); opacity: 1; }
  95% { opacity: 1; }
  100% { transform: translateY(-120vh) translateX(-30px); opacity: 0; }
}

@keyframes float2 {
  0% { transform: translateY(0) translateX(0); opacity: 1; }
  92% { opacity: 1; }
  100% { transform: translateY(-110vh) translateX(80px); opacity: 0; }
}

@keyframes float3 {
  0% { transform: translateY(0) translateX(0); opacity: 1; }
  97% { opacity: 1; }
  100% { transform: translateY(-130vh) translateX(-60px); opacity: 0; }
}

@keyframes float4 {
  0% { transform: translateY(0) translateX(0); opacity: 1; }
  94% { opacity: 1; }
  100% { transform: translateY(-115vh) translateX(40px); opacity: 0; }
}

@keyframes float5 {
  0% { transform: translateY(0) translateX(0); opacity: 1; }
  96% { opacity: 1; }
  100% { transform: translateY(-125vh) translateX(-20px); opacity: 0; }
}

@keyframes float6 {
  0% { transform: translateY(0) translateX(0); opacity: 1; }
  93% { opacity: 1; }
  100% { transform: translateY(-105vh) translateX(70px); opacity: 0; }
}

@keyframes float7 {
  0% { transform: translateY(0) translateX(0); opacity: 1; }
  98% { opacity: 1; }
  100% { transform: translateY(-135vh) translateX(-50px); opacity: 0; }
}

@keyframes float8 {
  0% { transform: translateY(0) translateX(0); opacity: 1; }
  91% { opacity: 1; }
  100% { transform: translateY(-120vh) translateX(60px); opacity: 0; }
}

@keyframes float9 {
  0% { transform: translateY(0) translateX(0); opacity: 1; }
  95% { opacity: 1; }
  100% { transform: translateY(-110vh) translateX(-40px); opacity: 0; }
}

@keyframes float10 {
  0% { transform: translateY(0) translateX(0); opacity: 1; }
  94% { opacity: 1; }
  100% { transform: translateY(-128vh) translateX(30px); opacity: 0; }
}

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

.hero {
  text-align: center;
  padding: 60px 0;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(90deg, #00ff88, #00cc66, #00aa44, #00ff88);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  animation: gradientMove 2s linear infinite;
}

@keyframes gradientMove {
  0% {
    background-position: 200% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Respect user's motion preferences for accessibility */
@media (prefers-reduced-motion: reduce) {
  .gradient-text {
    animation: none;
    background: linear-gradient(90deg, #00ff88, #00cc66, #00aa44);
    background-size: 100% 100%;
  }
}

.hero .subtitle {
  font-size: 1.5rem;
  color: #a3a3a3;
  margin-bottom: 30px;
  font-weight: 400;
}

.cta-button {
  background-color: #5cc97b;
  color: #040608;
  padding: 24px 50px;
  font-size: 1.4rem;
  font-weight: 600;
  border: 3px solid #5cc97b;
  border-radius: 25px;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  margin: 20px 0;
  position: relative;
  overflow: visible;
  animation: pulse 1s infinite;
  will-change: transform, box-shadow;
  transform: translateZ(0);
}

.cta-button:hover {
  background-color: #4ab86a;
  transform: translateY(-2px);
  animation: none;
}

@media (max-width: 768px) {
  /* Reduce particles on mobile for better performance */
  .particle:nth-child(n+11) {
    display: none;
  }
}

@media (max-width: 480px) {
  /* Further reduce particles on small mobile for better performance */
  .particle:nth-child(n+6) {
    display: none;
  }
}

/* Modal Styles (for index.html only) */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
}

.modal-content {
  background-color: #0c0c0f;
  margin: 5% auto;
  padding: 40px;
  border: 1px solid #1d2021;
  border-radius: 12px;
  width: 90%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.close {
  color: #a3a3a3;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  top: -20px;
  right: -20px;
  width: 40px;
  height: 40px;
  background-color: #0c0c0f;
  border: 1px solid #1d2021;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  transition: all 0.3s ease;
}

.close:hover {
  color: #fff;
  background-color: #1a1a1a;
  border-color: #2d2d2d;
  transform: scale(1.05);
}

.modal h2 {
  color: #fff;
  margin-bottom: 30px;
  text-align: center;
  font-size: 2rem;
  font-weight: 600;
}

.modal-title-small {
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  line-height: 1.4;
  margin-bottom: 20px;
  padding: 0 40px;
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input {
  width: 100%;
  padding: 15px;
  border: 2px solid #1d2021;
  border-radius: 8px;
  background-color: #1a1a1a;
  color: #fff;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus {
  outline: none;
  border-color: #5cc97b;
}

.form-group input.error {
  border-color: #ff6b6b;
}

.form-group input.valid {
  border-color: #5cc97b;
}

.submit-btn {
  width: 100%;
  background-color: #5cc97b;
  color: #040608;
  padding: 18px;
  font-size: 1.2rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.submit-btn:hover {
  background-color: #4ab86a;
  transform: translateY(-2px);
}

.submit-btn:disabled {
  background-color: #666;
  cursor: not-allowed;
  transform: none;
}

@keyframes pulse {
  0% {
    box-shadow: 
      0 0 0 0 rgba(92, 201, 123, 0.8),
      0 0 0 0 rgba(92, 201, 123, 0.6);
    border-color: #5cc97b;
  }
  50% {
    box-shadow: 
      0 0 0 8px rgba(92, 201, 123, 0.4),
      0 0 0 16px rgba(92, 201, 123, 0.2);
    border-color: #6dd88a;
  }
  100% {
    box-shadow: 
      0 0 0 16px rgba(92, 201, 123, 0),
      0 0 0 24px rgba(92, 201, 123, 0);
    border-color: #5cc97b;
  }
}

.cta-button.small {
  padding: 12px 30px;
  font-size: 1rem;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 600;
  text-align: center;
  margin: 40px 0 30px 0;
}

.cards-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin: 30px 0 40px 0;
}

.card {
  background-color: #0c0c0f;
  border: 1px solid #1d2021;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.card-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-text {
  font-size: 1.1rem;
  line-height: 1.6;
}

.card-image {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
  background-color: #1a1a1a;
}


.final-cta {
  text-align: center;
  padding: 40px 0;
}

.copyright {
  text-align: center;
  color: #a3a3a3;
  font-size: 0.9rem;
  padding: 30px 0;
  border-top: 1px solid #1a1a1a;
  margin-top: 30px;
}

/* Video Section */
.video-section {
  text-align: center;
  padding: 30px 0;
}

.video-container {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.video-container iframe {
  width: 100%;
  height: 450px;
  border: none;
}

/* Warning Section */
.warning-section {
  padding: 40px 0;
}

.warning-box {
  background-color: #2d1b1b;
  border: 2px solid #ff6b6b;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.warning-box h3 {
  color: #ff6b6b;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.warning-box p {
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Reasons Section */
.reasons-section {
  padding: 40px 0;
}

.reasons-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.reason-item {
  background: linear-gradient(135deg, #0c0c0f 0%, #1a1a1a 50%, #0c0c0f 100%);
  border: 1px solid #1d2021;
  border-radius: 16px;
  padding: 30px 25px;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}




.reason-item h3 {
  color: #5cc97b;
  font-size: 1.3rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.reason-item p {
  color: #a3a3a3;
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .reasons-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }

  /* Top Bar Mobile */
  .top-bar {
    padding: 10px 0;
  }

  .top-bar p {
    font-size: 1rem;
  }

  .hero {
    padding: 30px 0;
  }

  .hero h1 {
    font-size: 2rem;
    line-height: 1.1;
  }

  .hero .subtitle {
    font-size: 1.1rem;
    margin-bottom: 20px;
  }

  .cta-button {
    padding: 20px 35px;
    font-size: 1.2rem;
    width: 100%;
    max-width: 300px;
  }

  .section-title {
    font-size: 1.6rem;
    margin: 30px 0 20px 0;
  }

  .cards-container {
    gap: 20px;
    margin: 20px 0 30px 0;
  }

  .card {
    padding: 20px;
  }

  .card-content {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .card-text h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
  }

  .card-text p {
    font-size: 1rem;
  }

  .card-image {
    height: 120px;
  }


  .final-cta {
    padding: 30px 0;
  }

  .copyright {
    padding: 20px 0;
    font-size: 0.8rem;
  }

  /* Mobile Modal - Full Screen */
  .modal {
    padding: 0;
    margin: 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
  }
  
  .modal-content {
    margin: 0;
    width: 100vw;
    height: 100vh;
    max-width: none;
    border-radius: 0;
    border: none;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    position: fixed;
    top: 0;
    left: 0;
  }

  .modal h2 {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }

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

  .form-group input {
    padding: 15px;
    font-size: 1rem;
    border-radius: 8px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    /* Prevent zoom on focus in Safari */
    font-size: 16px;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }
  
  .close {
    position: fixed;
    top: 10px;
    right: 10px;
    font-size: 20px;
    font-weight: bold;
    z-index: 1001;
    background-color: #0c0c0f;
    border: 1px solid #1d2021;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    text-align: center;
    color: #a3a3a3;
  }
  
  .close:hover {
    color: #fff;
    background-color: #1a1a1a;
    border-color: #2d2d2d;
    transform: scale(1.05);
  }
  
  .submit-btn {
    padding: 18px;
    font-size: 1.1rem;
    border-radius: 8px;
    min-height: 50px;
    touch-action: manipulation;
    margin-top: 20px;
  }

  /* Ensure modal is truly edge-to-edge */
  .modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .close {
    top: 10px;
    right: 10px;
    font-size: 20px;
    font-weight: bold;
    background-color: #0c0c0f;
    border: 1px solid #1d2021;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-align: center;
    color: #a3a3a3;
  }

  /* Mobile Video Section */
  .video-container iframe {
    height: 250px;
  }

  /* Mobile Warning Section */
  .warning-box {
    padding: 20px;
    margin: 0 15px;
  }

  .warning-box h3 {
    font-size: 1.3rem;
  }

  .warning-box p {
    font-size: 1rem;
  }

  /* Mobile Reasons Section */
  .reasons-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .reason-item {
    padding: 25px 20px;
  }

  .reason-item h3 {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  /* Top Bar Small Mobile */
  .top-bar {
    padding: 8px 0;
  }

  .top-bar p {
    font-size: 0.95rem;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .hero .subtitle {
    font-size: 1rem;
  }

  .section-title {
    font-size: 1.3rem;
  }

  .cta-button {
    padding: 18px 30px;
    font-size: 1.1rem;
  }

  .card {
    padding: 15px;
  }

  .card-text h3 {
    font-size: 1.2rem;
  }

  .card-text p {
    font-size: 0.95rem;
  }

  .card-image {
    height: 100px;
  }


  /* Small Mobile Modal - Full Screen */
  .modal-content {
    padding: 15px;
    width: 100vw;
    height: 100vh;
    border: none;
    border-radius: 0;
  }

  .modal h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
  }

  .form-group {
    margin-bottom: 15px;
  }

  .form-group input {
    padding: 12px;
    font-size: 16px; /* Prevent zoom in Safari */
    border-radius: 6px;
    min-height: 44px; /* iOS touch target minimum */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
  }
  
  .close {
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    font-size: 20px;
    font-weight: bold;
    background-color: #0c0c0f;
    border: 1px solid #1d2021;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-align: center;
    color: #a3a3a3;
  }
  
  .submit-btn {
    padding: 15px;
    font-size: 1rem;
    min-height: 48px;
    margin-top: 15px;
  }

  .close {
    top: 10px;
    right: 10px;
    font-size: 20px;
    font-weight: bold;
    background-color: #0c0c0f;
    border: 1px solid #1d2021;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-align: center;
    color: #a3a3a3;
  }

  /* Small Mobile Video Section */
  .video-container iframe {
    height: 200px;
  }

  /* Small Mobile Warning Section */
  .warning-box {
    padding: 15px;
    margin: 0 10px;
  }

  .warning-box h3 {
    font-size: 1.2rem;
  }

  .warning-box p {
    font-size: 0.9rem;
  }

  /* Small Mobile Reasons Section */
  .reason-item {
    padding: 20px 15px;
  }

  .reason-item h3 {
    font-size: 1.1rem;
  }

  .reason-item p {
    font-size: 0.9rem;
  }
}


/* Social Media Cards */
.social-cards {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.social-card {
  background: linear-gradient(135deg, #0c0c0f 0%, #1a1a1a 50%, #0c0c0f 100%);
  border: 2px solid transparent;
  border-radius: 20px;
  padding: 35px 25px;
  text-decoration: none;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  min-width: 220px;
  max-width: 280px;
  box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.social-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(from 0deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: all 0.6s ease;
  z-index: 1;
  animation: rotate 3s linear infinite;
}

.social-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.08) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

.social-card:hover::before {
  opacity: 1;
}

.social-card:hover::after {
  opacity: 1;
}

.social-card:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.3);
}

@keyframes rotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.social-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  z-index: 3;
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.social-icon svg {
  width: 36px;
  height: 36px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.social-content {
  text-align: center;
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.social-content h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: -5px;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  letter-spacing: 0.5px;
}

.social-content p {
  font-size: 1rem;
  color: #b3b3b3;
  line-height: 1.5;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  font-weight: 400;
}

/* Instagram Card */
.social-card.instagram {
  background: linear-gradient(135deg, #0c0c0f 0%, #1a0a1a 50%, #0c0c0f 100%);
}

.social-card.instagram:hover {
  box-shadow: 
    0 20px 60px rgba(225, 48, 108, 0.3),
    0 0 0 1px rgba(225, 48, 108, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.social-card.instagram .social-icon {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  box-shadow: 
    0 8px 25px rgba(225, 48, 108, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.social-card.instagram:hover .social-icon {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 
    0 12px 35px rgba(225, 48, 108, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.social-card.instagram:hover .social-content h3 {
  color: #e1306c;
  transform: translateY(-2px);
  text-shadow: 0 4px 8px rgba(225, 48, 108, 0.3);
}

/* LinkedIn Card */
.social-card.linkedin {
  background: linear-gradient(135deg, #0c0c0f 0%, #0a1a1a 50%, #0c0c0f 100%);
}

.social-card.linkedin:hover {
  box-shadow: 
    0 20px 60px rgba(0, 119, 181, 0.3),
    0 0 0 1px rgba(0, 119, 181, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.social-card.linkedin .social-icon {
  background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
  box-shadow: 
    0 8px 25px rgba(0, 119, 181, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.social-card.linkedin:hover .social-icon {
  transform: scale(1.15) rotate(-3deg);
  box-shadow: 
    0 12px 35px rgba(0, 119, 181, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.social-card.linkedin:hover .social-content h3 {
  color: #0077b5;
  transform: translateY(-2px);
  text-shadow: 0 4px 8px rgba(0, 119, 181, 0.3);
}

/* X (formerly Twitter) Card */
.social-card.x {
  background: linear-gradient(135deg, #0c0c0f 0%, #1a1a1a 50%, #0c0c0f 100%);
}

.social-card.x:hover {
  box-shadow: 
    0 20px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.social-card.x .social-icon {
  background: linear-gradient(135deg, #000000 0%, #333333 100%);
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.social-card.x:hover .social-icon {
  transform: scale(1.15) rotate(2deg);
  box-shadow: 
    0 12px 35px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.social-card.x:hover .social-content h3 {
  color: #ffffff;
  transform: translateY(-2px);
  text-shadow: 0 4px 8px rgba(255, 255, 255, 0.3);
}

/* Mobile Responsiveness for Social Cards */
@media (max-width: 768px) {
  .social-cards {
    gap: 20px;
    margin: 30px 0;
  }

  .social-card {
    min-width: 160px;
    max-width: 180px;
    padding: 25px 20px;
    gap: 15px;
  }

  .social-icon {
    width: 50px;
    height: 50px;
  }

  .social-icon svg {
    width: 28px;
    height: 28px;
  }

  .social-content h3 {
    font-size: 1.1rem;
  }

  .social-content p {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .social-cards {
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin: 25px 0;
  }

  .social-card {
    width: 100%;
    max-width: 280px;
    padding: 20px;
    gap: 12px;
  }

  .social-icon {
    width: 45px;
    height: 45px;
  }

  .social-icon svg {
    width: 24px;
    height: 24px;
  }

  .social-content h3 {
    font-size: 1rem;
  }

  .social-content p {
    font-size: 0.85rem;
  }
}
