 :root {
     --primary: #FF0000;
     --primary-dark: #CC0000;
     --secondary: #282828;
     --light-bg: #f9f9f9;
     --card-bg: #ffffff;
     --text-primary: #333333;
     --text-secondary: #606060;
     --success: #4caf50;
     --warning: #ff9800;
     --error: #f44336;
     --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
     --transition: all 0.3s ease;
 }
 
 /* Header & Navigation */
 header {
     background: var(--card-bg);
     box-shadow: var(--shadow);
     padding: 15px 0;
     position: sticky;
     top: 0;
     z-index: 100;
 }

 .nav-container {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .logo {
     display: flex;
     align-items: center;
     gap: 10px;
     text-decoration: none;
 }

 .logo i {
     color: var(--primary);
     font-size: 28px;
 }

 .logo-text {
     font-size: 22px;
     font-weight: 700;
     color: var(--text-primary);
 }

 .logo-text span {
     color: var(--primary);
 }

 /* Hero Section */
 .hero {
     padding: 60px 0 40px;
     text-align: center;
     animation: fadeIn 1s ease;
     background: none !important;
 }


 .hero h1 {
     font-size: 2.5rem;
     margin-bottom: 15px;
     color: var(--secondary);
 }

 .hero p {
     font-size: 1.1rem;
     color: var(--text-secondary);
     max-width: 700px;
     margin: 0 auto 30px;
 }

 /* Main Content */
 .main-content {
     display: flex;
     gap: 30px;
     margin-bottom: 50px;
 }

 .content {
     flex: 2;
 }

 .sidebar {
     flex: 1;
 }

 /* Checker Card */
 .checker-card {
     background: var(--card-bg);
     border-radius: 12px;
     box-shadow: var(--shadow);
     padding: 30px;
     margin-bottom: 30px;
     animation: slideUp 0.8s ease;
 }

 .checker-card h2 {
     font-size: 1.8rem;
     margin-bottom: 20px;
     color: var(--secondary);
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .checker-card h2 i {
     color: var(--primary);
 }

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

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

 label {
     display: block;
     margin-bottom: 8px;
     font-weight: 500;
     color: var(--text-secondary);
 }

 .input-with-icon {
     position: relative;
 }

 .input-with-icon i {
     position: absolute;
     left: 15px;
     top: 50%;
     transform: translateY(-50%);
     color: var(--text-secondary);
 }

 .input-with-icon input {
     width: 100%;
     padding: 15px 15px 15px 45px;
     border: 1px solid #ddd;
     border-radius: 8px;
     font-size: 16px;
     transition: var(--transition);
 }

 .input-with-icon input:focus {
     border-color: var(--primary);
     box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.1);
     outline: none;
 }

 .submit-btn {
     background: var(--primary);
     color: white;
     border: none;
     padding: 15px 25px;
     border-radius: 8px;
     font-size: 16px;
     font-weight: 600;
     cursor: pointer;
     transition: var(--transition);
     display: inline-flex;
     align-items: center;
     gap: 8px;
 }

 .submit-btn:hover {
     background: var(--primary-dark);
     transform: translateY(-2px);
     box-shadow: 0 4px 8px rgba(255, 0, 0, 0.2);
 }

 .submit-btn:active {
     transform: translateY(0);
 }

 /* Results Section */
 .results {
     background: var(--card-bg);
     border-radius: 12px;
     box-shadow: var(--shadow);
     padding: 30px;
     margin-bottom: 30px;
     animation: fadeIn 1s ease;
     display: none;
 }

 .results.visible {
     display: block;
 }

 .results-header {
     display: flex;
     align-items: center;
     gap: 15px;
     margin-bottom: 25px;
 }

 .channel-avatar {
     width: 80px;
     height: 80px;
     border-radius: 50%;
     overflow: hidden;
     background: #ddd;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .channel-avatar img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .channel-avatar i {
     font-size: 40px;
     color: #999;
 }

 .channel-info h3 {
     font-size: 1.5rem;
     margin-bottom: 5px;
 }

 .channel-info p {
     color: var(--text-secondary);
 }

 .stats-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
     gap: 20px;
     margin-bottom: 25px;
 }

 .stat-card {
     background: var(--light-bg);
     border-radius: 8px;
     padding: 20px;
     text-align: center;
     transition: var(--transition);
 }

 .stat-card:hover {
     transform: translateY(-5px);
     box-shadow: var(--shadow);
 }

 .stat-card i {
     font-size: 24px;
     margin-bottom: 10px;
     color: var(--primary);
 }

 .stat-card h4 {
     font-size: 1.8rem;
     margin-bottom: 5px;
     color: var(--secondary);
 }

 .stat-card p {
     color: var(--text-secondary);
     font-size: 0.9rem;
 }

 .monetization-status {
     padding: 20px;
     border-radius: 8px;
     margin-top: 20px;
     text-align: center;
     animation: pulse 2s infinite;
 }

 .status-eligible {
     background: rgba(76, 175, 80, 0.1);
     border: 1px solid var(--success);
     color: var(--success);
 }

 .status-ineligible {
     background: rgba(244, 67, 54, 0.1);
     border: 1px solid var(--error);
     color: var(--error);
 }

 .status-pending {
     background: rgba(255, 152, 0, 0.1);
     border: 1px solid var(--warning);
     color: var(--warning);
 }

 .status-title {
     font-size: 1.5rem;
     margin-bottom: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 10px;
 }

 .status-desc {
     margin-bottom: 0;
 }

 /* FAQ Section */
 .faq-section {
     background: var(--card-bg);
     border-radius: 12px;
     box-shadow: var(--shadow);
     padding: 30px;
     margin-bottom: 30px;
     animation: slideUp 0.8s ease;
 }

 .faq-section h2 {
     font-size: 1.8rem;
     margin-bottom: 20px;
     color: var(--secondary);
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .faq-item {
     margin-bottom: 20px;
     border-bottom: 1px solid #eee;
     padding-bottom: 20px;
 }

 .faq-item:last-child {
     border-bottom: none;
     margin-bottom: 0;
     padding-bottom: 0;
 }

 .faq-question {
     font-size: 1.2rem;
     font-weight: 600;
     margin-bottom: 10px;
     color: var(--secondary);
     cursor: pointer;
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .faq-question i {
     transition: var(--transition);
 }

 .faq-answer {
     color: var(--text-secondary);
     overflow: hidden;
     max-height: 0;
     transition: max-height 0.3s ease;
 }

 .faq-answer.visible {
     max-height: 500px;
 }

 .faq-answer ul {
     padding-left: 20px;
     margin: 15px 0;
 }

 .faq-answer li {
     margin-bottom: 8px;
 }

 /* Social Sharing */
 .social-share {
     background: var(--card-bg);
     border-radius: 12px;
     box-shadow: var(--shadow);
     padding: 25px;
     text-align: center;
     margin-bottom: 30px;
 }

 .social-share h3 {
     margin-bottom: 15px;
     color: var(--secondary);
 }

 .social-icons {
     display: flex;
     justify-content: center;
     gap: 15px;
 }

 .social-icon {
     width: 50px;
     height: 50px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     font-size: 20px;
     transition: var(--transition);
     text-decoration: none;
 }

 .social-icon:hover {
     transform: translateY(-3px);
     box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
 }

 .facebook {
     background: #3b5998;
 }

 .twitter {
     background: #1da1f2;
 }

 .linkedin {
     background: #0077b5;
 }

 .whatsapp {
     background: #25D366;
 }

 .action-buttons {
     display: flex;
     justify-content: center;
     gap: 15px;
     margin-top: 20px;
 }


 /* Animations */
 @keyframes fadeIn {
     from {
         opacity: 0;
     }

     to {
         opacity: 1;
     }
 }

 @keyframes slideUp {
     from {
         opacity: 0;
         transform: translateY(20px);
     }

     to {
         opacity: 1;
         transform: translateY(0);
     }
 }

 @keyframes pulse {
     0% {
         box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.2);
     }

     70% {
         box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
     }

     100% {
         box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
     }
 }

 /* Responsive Design */
 @media (max-width: 900px) {
     .main-content {
         flex-direction: column;
     }

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

     .stats-grid {
         grid-template-columns: 1fr 1fr;
     }
 }

 @media (max-width: 600px) {
     .stats-grid {
         grid-template-columns: 1fr;
     }

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

     .checker-card,
     .results,
     .faq-section,
     .social-share {
         padding: 20px;
     }

     .results-header {
         flex-direction: column;
         text-align: center;
     }
 }

 /* Loading Animation */
 .loader-buttons {
     display: flex;
 }

 .loader {
     display: none;
     text-align: center;
     margin: 20px 0;
     padding: 5px;
 }

 .loader .spinner {
     width: 40px;
     height: 40px;
     border: 4px solid #f3f3f3;
     border-top: 4px solid var(--primary);
     border-radius: 50%;
     animation: spin 1s linear infinite;
     margin: 0 auto;
 }

 .loader p {
     width: max-content;
     margin-top: 10px;
     color: var(--text-secondary);
 }

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

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

 /* Error Message */
 .error-message {
     display: none;
     background: rgba(244, 67, 54, 0.1);
     border: 1px solid var(--error);
     color: var(--error);
     padding: 15px;
     border-radius: 8px;
     margin-top: 20px;
     text-align: center;
 }


 /* 
.wrapper{
    margin-top: 4em;
    margin-bottom: 4em;
}
.responsive .span5 {
    width: 500px !important;
  }


    input[type=text], select {
    width: 75%;
    height: inherit !important;
    padding: 12px 20px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    }

    input[type=submit] {
    width: 15%;
    background-color: #086056;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    }

    .sub-btn {
        width: auto !important;
        padding: 6px 12px !important;
    }

    input[type=submit]:hover {
    background-color: #45a049;
    }

    form {
        margin: auto;
    }

    .form-container{
        border-radius: 5px;
        background-color: #f2f2f2;
        padding: 20px;
    }

    .faq{
        margin-top: 5em;
    }
  
  ul li {
      font-size: 18px;
      line-height: 2.2;
      font-family: 'circular !important';
  }
  .channel-info p span{
      color: #086056;
      font-weight: bold;
  }
  

  .monetized{
      color: #38aec1;
      font-weight: bold;
  }
  
  .not-monetized{
      color: #d73606;
      font-weight: bold;
  }
  q::before {
      content: open-quote !important;
  }
  
  q::after {
      content: open-quote !important;
  }
  .pageLoader{
    background: url('/images/loader.gif') no-repeat center center;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9999999;
    background-color: #ffffff8c;

}
.error{
    color: red;
    font-size: 1.1em;
}

.you-table{
    width: 100%;
}

.you-table tr td {
    text-align-last: center;
}

#video_model{
    display: none;
}

.youtube-modal {
    position: fixed;
    top: 9%;
    left: 20%;
    z-index: 1050;
    overflow: auto;
    background-color: #fff;
    border: 1px solid #999;
    border: 1px solid rgba(0,0,0,0.3);
    border: 1px solid #999;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 7px rgba(0,0,0,0.3);
    -moz-box-shadow: 0 3px 7px rgba(0,0,0,0.3);
    box-shadow: 0 3px 7px rgba(0,0,0,0.3);
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding-box;
    background-clip: padding-box;
}

.modal-body {
    max-height: 650px !important;
    overflow-y: inherit !important;
}

.close{
    padding: 10px;
}

.details-default-image {
    height: 50% !important;
} */