.full-width-row {
    width: 100%;
    display: block !important; /* ยกเลิก Flex/Grid ของระบบเดิม */
}
.full-width-row .widget {
    width: 100% !important;
    max-width: 100% !important;
}

/* Neon Text Style */
.neon-text-red {
		margin-top: 20px;
	  color: #fff;
	  text-shadow:
				0 0 5px #f00,
				0 0 10px #f00,
				0 0 20px #f00,
				0 0 40px #f00;
		animation: flicker 2s infinite alternate;
}

.neon-text-blue {
  margin-top: 20px;
  color: #00f0ff;
  text-shadow:
    0 0 5px #00f0ff,
    0 0 10px #00f0ff,
    0 0 20px #00d4ff,
    0 0 40px #00b3ff;
}

@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    opacity: 1;
  }
  20%, 24%, 55% {
    opacity: 0;
  }
}

.footer-content .widget {
    width: 100%;
    max-width: 100%;
}