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

 body {
     font-family: Arial, sans-serif;
     background: #000;
     color: #fff;
     min-height: 100vh;
 }

 .home-container {
     position: relative;
     min-height: 100vh;
 }

 .ai-cursor {
     position: fixed;
     width: 20px;
     height: 20px;
     background: #1d9bf0;
     border-radius: 50%;
     pointer-events: none;
     z-index: 9999;
     transition: transform 0.1s ease;
 }

 .ai-mascot {
     position: fixed;
     width: 60px;
     height: 60px;
     background: #1d9bf0;
     border-radius: 50%;
     z-index: 1000;
     cursor: pointer;
     transition: all 0.3s ease;
 }

 .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: 100px 20px;
 }

 .jeet-title {
     font-size: 4rem;
     margin-bottom: 20px;
     background: linear-gradient(45deg, #1d9bf0, #7c3aed);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .platform-section {
     padding: 50px 20px;
 }

 .platform-buttons {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 20px;
     max-width: 1200px;
     margin: 0 auto;
 }

 .platform-card {
     background: rgba(255, 255, 255, 0.1);
     border-radius: 15px;
     overflow: hidden;
 }

 .ai-button {
     width: 100%;
     padding: 20px;
     background: linear-gradient(45deg, #1d9bf0, #7c3aed);
     border: none;
     color: white;
     font-size: 1.1rem;
     cursor: pointer;
     transition: all 0.3s ease;
     border-radius: 15px;
 }

 .ai-button:hover {
     transform: translateY(-2px);
 }

 .ai-button.connected {
     background: linear-gradient(45deg, #10b981, #059669);
 }

 .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.8);
     z-index: 10000;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .post-modal {
     background: #1a1a1a;
     border-radius: 20px;
     padding: 30px;
     max-width: 500px;
     width: 90%;
 }

 .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;
 }

 .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: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;
 }



 