/* EDIT 17: CYBERPUNK FUTURISTIC DESIGN - Complete redesign with green-gold AI theme */
/* TO REVERT: Replace with original simple styles */

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


 body {
     font-family: 'Courier New', 'Monaco', 'Lucida Console', monospace;
     background: radial-gradient(ellipse at center, #0a0a0a 0%, #050505 100%);
     background-attachment: fixed;
     color: #050505;
     min-height: 100vh;
     position: relative;
     overflow-x: hidden;
     cursor: default; /* EDIT 21: Restored normal cursor - TO REVERT: change back to crosshair */
 }

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

 /* Floating particles effect */
 body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(2px 2px at 20px 30px, #050505, transparent),
                      radial-gradient(2px 2px at 40px 70px, #ffbb00, transparent),
                      radial-gradient(1px 1px at 90px 40px, #ff0080, transparent);
    background-repeat: repeat;
    background-size: 100px 100px;
    animation: particleFloat 30s ease-in-out infinite;
    opacity: 0.1;
    z-index: -1;
 }

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

 @keyframes particleFloat {
     0%, 100% { transform: translateY(0px); }
     50% { transform: translateY(-20px); }
 }

 /* EDIT 23: Enhanced Cyberform Effects - TO REVERT: Remove this entire section */
 /* Matrix rain effect */
 .matrix-rain {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     pointer-events: none;
     z-index: 1;
     opacity: 0.1;
 }

 /* Enhanced glowing borders */
 .cyber-border {
     position: relative;
 }

 .cyber-border::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     padding: 2px;
     background: linear-gradient(45deg, #050505, #ffffff, #050505);
     border-radius: inherit;
     mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
     mask-composite: exclude;
     animation: borderRotate 3s linear infinite;
 }

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

 /* Holographic effect */
 .holographic {
     background: linear-gradient(
         45deg,
         rgba(0, 255, 136, 0.1) 0%,
         rgba(255, 215, 0, 0.1) 25%,
         rgba(0, 255, 136, 0.1) 50%,
         rgba(255, 0, 128, 0.1) 75%,
         rgba(0, 255, 136, 0.1) 100%
     );
     background-size: 400% 400%;
     animation: holographicShift 4s ease-in-out infinite;
 }

 @keyframes holographicShift {
     0%, 100% { background-position: 0% 50%; }
     50% { background-position: 100% 50%; }
 }

 /* Data stream effect */
 .data-stream {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: repeating-linear-gradient(
         90deg,
         transparent,
         transparent 98px,
         rgba(0, 255, 136, 0.02) 100px
     );
     animation: dataFlow 20s linear infinite;
     pointer-events: none;
     z-index: 1;
 }

 @keyframes dataFlow {
     0% { transform: translateX(0); }
     100% { transform: translateX(100px); }
 }

 /* Neural network background */
 .neural-network {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background-image:
         radial-gradient(circle at 20% 80%, rgba(0, 255, 136, 0.1) 0%, transparent 50%),
         radial-gradient(circle at 80% 20%, rgba(255, 215, 0, 0.1) 0%, transparent 50%),
         radial-gradient(circle at 40% 40%, rgba(255, 0, 128, 0.1) 0%, transparent 50%);
     animation: neuralPulse 8s ease-in-out infinite;
     pointer-events: none;
     z-index: 1;
 }

 @keyframes neuralPulse {
     0%, 100% { opacity: 0.3; }
     50% { opacity: 0.7; }
 }

 /* Video Tutorial Section Styling */
 .video-tutorial-section {
     padding: 80px 20px;
     max-width: 1200px;
     margin: 0 auto;
     text-align: center;
 }

 .section-header {
     margin-bottom: 50px;
 }

 .section-title {
     font-size: 2.5em;
     color: #050505;
     margin-bottom: 15px;
     display: inline-flex;
     align-items: center;
     gap: 15px;
     padding: 20px 40px;
     border-radius: 15px;
     text-shadow: 0 0 10px #ffffff;
 }

 .section-subtitle {
     font-size: 1.2em;
     color: #ffbb00;
     opacity: 0.9;
     padding: 15px 30px;
     border-radius: 25px;
     display: inline-block;
 }

 .video-container {
     display: flex;
     justify-content: center;
     align-items: center;
 }

 /* EDIT 28: Updated video styling for actual YouTube video - TO REVERT: Replace with placeholder styling */
 .video-wrapper {
     background: linear-gradient(135deg, #0a0a0a, rgba(0, 255, 136, 0.05));
     border: 2px solid #050505;
     border-radius: 20px;
     padding: 20px;
     max-width: 900px;
     width: 100%;
     transition: all 0.4s ease;
     position: relative;
     overflow: hidden;
 }

 .video-wrapper:hover {
     transform: translateY(-10px);
     box-shadow:
         0 20px 40px rgba(0, 0, 0, 0.3),
         0 0 30px rgba(0, 255, 136, 0.2),
         inset 0 1px 0 rgba(0, 255, 136, 0.1);
 }

 .tutorial-video {
     width: 100%;
     height: 400px;
     border-radius: 15px;
     border: 2px solid rgba(0, 255, 136, 0.3);
     background: #050505;
     margin-bottom: 20px;
     transition: all 0.3s ease;
 }

 .tutorial-video:hover {
     border-color: #ffffff;
     box-shadow: 0 0 20px rgba(0, 255, 136, 0.3);
 }

 /* Responsive video sizing */
 @media (max-width: 768px) {
     .tutorial-video {
         height: 250px;
     }

     .video-wrapper {
         max-width: 100%;
         padding: 15px;
     }
 }

 .video-stats {
     display: flex;
     justify-content: center;
     gap: 30px;
     flex-wrap: wrap;
 }

 .video-stats span {
     display: flex;
     align-items: center;
     gap: 8px;
     color: #ffd700;
     font-size: 0.9em;
     padding: 8px 15px;
     background: rgba(0, 255, 136, 0.1);
     border-radius: 20px;
     border: 1px solid rgba(0, 255, 136, 0.3);
 }

 .video-stats i {
     color: #050505;
 }

 .home-container {
     position: relative;
     min-height: 100vh;
     backdrop-filter: blur(0.5px);
 }

 /* EDIT 22: Removed cyberpunk cursor - TO REVERT: Restore the ai-cursor styling above */

 .ai-mascot {
     position: fixed;
     width: 60px;
     height: 60px;
     background: linear-gradient(45deg, #050505, #ffbb00);
     border: 2px solid #ffffff;
     border-radius: 50%;
     z-index: 1000;
     cursor: pointer;
     transition: all 0.3s ease;
     box-shadow: 0 0 20px #ffffff;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 24px;
 }

 .ai-mascot:hover {
     transform: scale(1.1);
     box-shadow: 0 0 30px #ffffff;
 }

 .error-message {
     position: fixed;
     top: 20px;
     right: 20px;
     background: #f4212e;
     color: white;
     padding: 15px;
     border-radius: 8px;
     z-index: 10000;
 }

 .error-close-btn {
     background: none;
     border: none;
     color: white;
     cursor: pointer;
     margin-left: 10px;
 }

 .main-content {
     padding: 20px;
 }

 .top-header {
     text-align: center;
     padding: 120px 20px;
     position: relative;
     overflow: hidden;
 }

 .top-header::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 200%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(0, 255, 136, 0.1), transparent);
     animation: scanLine 3s linear infinite;
 }

 @keyframes scanLine {
     0% { left: -100%; }
     100% { left: 100%; }
 }

 .jeet-title {
     font-size: 4.5rem;
     margin-bottom: 30px;
     background: linear-gradient(45deg, #ffffff, #ffd700, #050505);
     background-size: 400% 400%;
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
     background-clip: text;
     animation: gradientShift 3s ease-in-out infinite;
     text-shadow: 0 0 10px #00fb86;
     font-weight: 900;
     letter-spacing: 0.1em;
     position: relative;
 }

 .jeet-title::after {
     content: '>>> NEUROVIAI.AI <<<';
     position: absolute;
     top: 100%;
     left: 50%;
     transform: translateX(-50%);
     font-size: 0.3em;
     color: #ffbb00;
     opacity: 0.7;
     animation: flicker 2s infinite alternate;
 }

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

 @keyframes flicker {
     0% { opacity: 0.7; }
     100% { opacity: 1; }
 }

 .platform-section {
     padding: 80px 20px;
     position: relative;
 }

 .platform-buttons {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
     gap: 25px;
     max-width: 1400px;
     margin: 0 auto;
     perspective: 1000px;
 }

 .platform-card {
     background: linear-gradient(135deg, rgba(0, 255, 136, 0.05), rgba(255, 215, 0, 0.05));
     border: 1px solid rgba(0, 255, 136, 0.3);
     border-radius: 20px;
     overflow: hidden;
     position: relative;
     transform-style: preserve-3d;
     transition: all 0.4s ease;
     backdrop-filter: blur(10px);
 }

 .platform-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(45deg, transparent, rgba(0, 255, 136, 0.1), transparent);
     opacity: 0;
     transition: opacity 0.3s ease;
 }

 .platform-card:hover {
     transform: translateY(-10px) rotateX(5deg);
     border-color: #ffffff;
     box-shadow:
         0 20px 40px rgba(0, 255, 136, 0.2),
         0 0 30px rgba(0, 255, 136, 0.1),
         inset 0 1px 0 rgba(255, 255, 255, 0.1);
 }

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

 .ai-button {
     width: 100%;
     padding: 25px 20px;
     background: linear-gradient(135deg, #050505, #ffbb00);
     border: 2px solid #ffffff;
     color: #0a0a0a;
     font-family: 'Courier New', monospace;
     font-weight: bold;
     font-size: 1.1em;
     letter-spacing: 0.05em;
     position: relative;
     overflow: hidden;
     cursor: pointer;
     transition: all 0.3s ease;
     border-radius: 15px;
     text-transform: uppercase;
 }

 .ai-button::before {
     content: '';
     position: absolute;
     top: 0;
     left: -100%;
     width: 100%;
     height: 100%;
     background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
     transition: left 0.5s ease;
 }

 .ai-button:hover::before {
     left: 100%;
 }

 .ai-button:hover {
     background: linear-gradient(135deg, #ffbb00, #ffffff);
     box-shadow:
         0 0 25px #ffffff,
         inset 0 1px 0 rgba(255, 255, 255, 0.3);
     transform: translateY(-2px);
 }

 .ai-button:active {
     transform: translateY(0);
     box-shadow: 0 0 15px #ffffff;
 }

 .ai-button.connected {
     background: linear-gradient(135deg, #ffffff, #ffd700);
     border-color: #ffd700;
     box-shadow: 0 0 20px #ffd700;
 }

 .ai-button.disabled {
     background: linear-gradient(135deg, #333, #555);
     border-color: #555;
     color: #888;
     cursor: not-allowed;
     box-shadow: none;
 }

 .ai-button.disabled::before {
     display: none;
 }

 /* Cyberpunk Button Text with Glitch Effect */
 .platform-name {
     position: relative;
     display: inline-block;
 }

 .platform-name::after {
     content: attr(data-text);
     position: absolute;
     left: 2px;
     top: 0;
     width: 100%;
     height: 100%;
     color: #ff0080;
     opacity: 0;
     animation: glitch 2s infinite;
     z-index: -1;
 }

 @keyframes glitch {
     0% { opacity: 0; }
     2% { opacity: 1; transform: translateX(-2px); }
     4% { opacity: 0; }
     6% { opacity: 1; transform: translateX(2px); }
     8% { opacity: 0; }
     100% { opacity: 0; }
 }

 @keyframes modalSlideUp {
     from {
         opacity: 0;
         transform: translateY(50px) scale(0.9);
     }
     to {
         opacity: 1;
         transform: translateY(0) scale(1);
     }
 }

 /* Token Display Cyberpunk Styling */
 .token-display-container {
     position: fixed;
     top: 20px;
     right: 20px;
     z-index: 1000;
 }

 .token-display {
     background: linear-gradient(135deg, #0a0a0a, rgba(0, 255, 136, 0.1));
     border: 2px solid #050505;
     border-radius: 25px;
     padding: 15px 20px;
     display: flex;
     align-items: center;
     gap: 10px;
     box-shadow:
         0 10px 30px rgba(0, 0, 0, 0.5),
         0 0 20px rgba(0, 255, 136, 0.3),
         inset 0 1px 0 rgba(0, 255, 136, 0.2);
     backdrop-filter: blur(10px);
     animation: tokenGlow 3s ease-in-out infinite alternate;
 }

 @keyframes tokenGlow {
     from {
         box-shadow:
             0 10px 30px rgba(0, 0, 0, 0.5),
             0 0 20px rgba(0, 255, 136, 0.3),
             inset 0 1px 0 rgba(0, 255, 136, 0.2);
     }
     to {
         box-shadow:
             0 10px 30px rgba(0, 0, 0, 0.5),
             0 0 30px rgba(0, 255, 136, 0.5),
             inset 0 1px 0 rgba(0, 255, 136, 0.4);
     }
 }

 .token-icon {
     color: #ffd700;
     font-size: 1.2em;
     animation: coinSpin 4s linear infinite;
 }

 @keyframes coinSpin {
     0% { transform: rotateY(0deg); }
     50% { transform: rotateY(180deg); }
     100% { transform: rotateY(360deg); }
 }

 .token-count {
     color: #050505;
     font-family: 'Courier New', monospace;
     font-weight: bold;
     font-size: 1.1em;
     text-shadow: 0 0 10px #ffffff;
 }

 .token-label {
     color: #ffbb00;
     font-size: 0.9em;
     opacity: 0.8;
 }

 .upgrade-btn {
     background: linear-gradient(135deg, #ff0080, #ffbb00);
     border: 1px solid #ff0080;
     color: white;
     padding: 8px 15px;
     border-radius: 15px;
     font-size: 0.9em;
     cursor: pointer;
     transition: all 0.3s ease;
     font-family: 'Courier New', monospace;
     font-weight: bold;
 }

 .upgrade-btn:hover {
     background: linear-gradient(135deg, #ffbb00, #ff0080);
     box-shadow: 0 0 15px #ff0080;
     transform: translateY(-1px);
 }

 /* Cyberpunk Loading Screen */
 .cyber-loading {
     position: fixed;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
     background: #050505;
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     z-index: 10001;
     transition: opacity 0.5s ease;
 }

 .loading-text {
     color: #050505;
     font-family: 'Courier New', monospace;
     font-size: 1.5em;
     margin-bottom: 30px;
     animation: loadingTextGlow 2s ease-in-out infinite alternate;
 }

 @keyframes loadingTextGlow {
     from {
         text-shadow: 0 0 5px #050505;
         opacity: 0.8;
     }
     to {
         text-shadow: 0 0 20px #050505, 0 0 30px #050505;
         opacity: 1;
     }
 }

 .loading-bar {
     width: 300px;
     height: 4px;
     background: rgba(0, 255, 136, 0.2);
     border-radius: 2px;
     overflow: hidden;
     position: relative;
 }

 .loading-progress {
     height: 100%;
     background: linear-gradient(90deg, #050505, #ffbb00);
     width: 0%;
     animation: loadingProgress 3s ease-in-out forwards;
     box-shadow: 0 0 10px #050505;
 }

 @keyframes loadingProgress {
     0% { width: 0%; }
     100% { width: 100%; }
 }

 .loading-dots {
     color: #ffbb00;
     font-family: 'Courier New', monospace;
     margin-top: 20px;
     animation: loadingDots 1.5s infinite;
 }

 @keyframes loadingDots {
     0% { content: ''; }
     25% { content: '.'; }
     50% { content: '..'; }
     75% { content: '...'; }
     100% { content: ''; }
 }

 .loading-dots::after {
     content: '';
     animation: loadingDots 1.5s infinite;
 }

 /* Responsive Design for Cyberpunk Theme */
 @media (max-width: 768px) {
     .jeet-title {
         font-size: 3rem;
     }

     .platform-buttons {
         grid-template-columns: 1fr;
         gap: 15px;
     }

     .ai-button {
         padding: 20px 15px;
         font-size: 1rem;
     }
 }
/* END EDIT 17 */

 .post-all-section {
     padding: 30px 20px;
     text-align: center;
 }

 .post-all-button {
     padding: 20px 40px;
     background: linear-gradient(45deg, #f59e0b, #d97706);
     border: none;
     color: white;
     font-size: 1.2rem;
     border-radius: 15px;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .post-all-button:disabled {
     opacity: 0.5;
     cursor: not-allowed;
 }

 .modal-overlay {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: rgba(0, 0, 0, 0.9);
     backdrop-filter: blur(5px);
     z-index: 10000;
     display: flex;
     align-items: center;
     justify-content: center;
     animation: modalFadeIn 0.3s ease;
 }

 @keyframes modalFadeIn {
     from { opacity: 0; }
     to { opacity: 1; }
 }

 .post-modal {
     background: linear-gradient(135deg, #0a0a0a, #050505);
     border: 2px solid #050505;
     border-radius: 20px;
     padding: 40px;
     max-width: 600px;
     width: 90%;
     box-shadow:
         0 20px 40px rgba(0, 0, 0, 0.5),
         0 0 30px rgba(0, 255, 136, 0.2),
         inset 0 1px 0 rgba(0, 255, 136, 0.1);
     position: relative;
     animation: modalSlideUp 0.4s ease;
 }

 .modal-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 20px;
 }

 .modal-close {
     background: none;
     border: none;
     color: white;
     font-size: 1.5rem;
     cursor: pointer;
 }

 .prompt-section textarea {
     width: 100%;
     padding: 15px;
     background: rgba(255, 255, 255, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.2);
     border-radius: 10px;
     color: white;
     font-size: 1rem;
     resize: vertical;
 }

 .generate-post-btn {
     width: 100%;
     padding: 15px;
     background: linear-gradient(45deg, #1d9bf0, #7c3aed);
     border: none;
     color: white;
     font-size: 1.1rem;
     border-radius: 10px;
     cursor: pointer;
     margin-top: 20px;
 }

 .generate-post-btn:disabled {
     opacity: 0.5;
     cursor: not-allowed;
 }

 .spinner {
     width: 20px;
     height: 20px;
     border: 2px solid #ffffff33;
     border-top: 2px solid #fff;
     border-radius: 50%;
     animation: spin 1s linear infinite;
     display: inline-block;
     margin-right: 10px;
 }

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

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

 .generated-posts-overlay {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: rgba(0, 0, 0, 0.9);
     z-index: 10000;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 20px;
 }

 .generated-posts-container {
     background: #1a1a1a;
     border-radius: 20px;
     padding: 30px;
     max-width: 800px;
     width: 100%;
     max-height: 80vh;
     overflow-y: auto;
 }

 .generated-post {
     background: rgba(255, 255, 255, 0.05);
     border-radius: 15px;
     padding: 20px;
     margin-bottom: 20px;
 }

 .post-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 15px;
 }

 .platform-badge {
     display: flex;
     align-items: center;
     gap: 8px;
     font-weight: bold;
 }

 .platform-badge.linkedin {
     color: #0077b5;
 }

 .platform-badge.twitter {
     color: #1d9bf0;
 }

 .posts-actions {
     display: flex;
     gap: 15px;
     justify-content: center;
     margin-top: 30px;
 }

 .post-now-btn,
 .close-posts-btn {
     padding: 12px 25px;
     border: none;
     border-radius: 10px;
     cursor: pointer;
     font-size: 1rem;
 }

 .post-now-btn {
     background: linear-gradient(45deg, #10b981, #059669);
     color: white;
 }

 .close-posts-btn {
     background: rgba(255, 255, 255, 0.1);
     color: white;
 }

 .success-badge {
     color: #10b981;
     font-weight: bold;
 }

 .error-badge {
     color: #f4212e;
     font-weight: bold;
 }

 .ai-features {
     padding: 80px 20px;
 }

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

 .ai-section-title {
     text-align: center;
     font-size: 3rem;
     margin-bottom: 50px;
 }

 .feature-cards {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
     gap: 30px;
 }

 .feature-card {
     background: rgba(255, 255, 255, 0.05);
     border-radius: 20px;
     padding: 30px;
     transition: transform 0.3s ease;
 }

 .feature-card:hover {
     transform: translateY(-10px);
 }

 .testimonials-section {
     padding: 80px 20px;
     background: rgba(255, 255, 255, 0.02);
 }

 .testimonials-container {
     max-width: 1000px;
     margin: 0 auto;
 }

 .testimonials-title {
     text-align: center;
     font-size: 2.5rem;
     margin-bottom: 50px;
 }

 .testimonials-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
     gap: 30px;
 }

 .testimonial-card {
     background: rgba(255, 255, 255, 0.05);
     border-radius: 20px;
     padding: 30px;
 }

 .stars {
     display: flex;
     gap: 5px;
     margin-bottom: 20px;
 }

 .star-icon {
     color: #f59e0b;
     font-size: 1.2rem;
 }

 .contact-section {
     padding: 80px 20px;
 }

 .contact-container {
     max-width: 800px;
     margin: 0 auto;
     text-align: center;
 }

 .social-links {
     display: flex;
     justify-content: center;
     gap: 20px;
     margin-top: 30px;
 }

/* EDIT 48: Add social media brand colors - TO REVERT: Replace with original generic styling */
 .social-link {
     display: flex;
     align-items: center;
     gap: 10px;
     padding: 12px 20px;
     background: rgba(255, 255, 255, 0.1);
     border-radius: 10px;
     color: white;
     text-decoration: none;
     transition: all 0.3s ease;
 }

 .social-link.linkedin {
     background: #0077b5 !important;
 }

 .social-link.instagram {
     background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%) !important;
 }

 .social-link.twitter {
     background: #1da1f2 !important;
 }

 .social-link.facebook {
     background: #1877f2 !important;
 }

 .social-link.reddit {
     background: #ff4500 !important;
 }

 .social-link.youtube {
     background: #ff0000 !important;
 }

 .social-link.github {
     background: #333333 !important;
 }

 .social-link.discord {
     background: #7289da !important;
 }

 .social-link:hover {
     transform: translateY(-2px);
 }

 .footer {
     background: rgba(0, 0, 0, 0.5);
     padding: 50px 20px 20px;
     margin-top: 100px;
 }

 .footer-content {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
     gap: 40px;
     max-width: 1200px;
     margin: 0 auto;
 }

 .footer-title {
     font-size: 1.2rem;
     margin-bottom: 20px;
 }

 .footer-links {
     list-style: none;
 }

 .footer-links li {
     margin-bottom: 10px;
 }

 .footer-links a {
     color: #ccc;
     text-decoration: none;
 }

 .footer-links a:hover {
     color: white;
 }

 .footer-bottom {
     text-align: center;
     margin-top: 40px;
     padding-top: 20px;
     border-top: 1px solid rgba(255, 255, 255, 0.1);
 }

 .hidden {
     display: none;
 }



 