            .header {
            background-color: #f5f5f5;
            text-align: center;
            padding: 40px 20px;
            border-bottom: 2px solid #ddd;
            transition: all 0.3s ease;
            }


            .site-name {
                font-size: 2.5rem;
                font-weight: 700;
                color: #222;
                margin-bottom: 10px;
            }

            .mission {
            font-size: 1.4rem;
            display: inline-block;
            border-right: 2px solid #333;
            white-space: pre-wrap; /* allows multi-line text */
            overflow: hidden;
            animation: blink 0.75s step-end infinite;
            }

            @keyframes blink {
            50% { border-color: transparent; }
            }
        
        .shrink {
        transform: scale(0.8);
        opacity: 0.8;
        }
        :root {
            --primary-color: #2c3e50;
            --secondary-color: #3498db;
            --accent-color: #e74c3c;
            --background-color: #f5f6fa;
            --card-background: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--background-color);
            padding: 20px;
            height: 2000px;
            transition: background-color 0.1s linear; /* smooth color change */
        }

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

        .header {
            text-align: center;
            margin-bottom: 30px;
            color: var(--primary-color);
        }

        .income-summary {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .income-card {
            background-color: var(--card-background);
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s ease;
        }

        .income-card:hover {
            transform: translateY(-5px);
        }

        .platform-name {
            font-size: 1.2em;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .income-amount {
            font-size: 1.8em;
            color: var(--secondary-color);
            font-weight: bold;
        }

        .growth {
            color: var(--accent-color);
            font-size: 0.9em;
            margin-top: 5px;
        }

        .charts-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
            gap: 20px;
        }

        .chart-wrapper {
            background-color: var(--card-background);
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }

        .input-section {
            background-color: var(--card-background);
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            margin-top: 30px;
        }

        .input-group {
            display: flex;
            gap: 10px;
            margin-bottom: 15px;
        }

        input, select {
            padding: 8px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1em;
        }

        button {
            background-color: var(--secondary-color);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        button:hover {
            background-color: #2980b9;
        }

        .video-wrapper {
    position: relative;
    width: 80%;
    max-width: 800px;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    background: #111;
    box-shadow:
      0 0 15px #00ffff33,
      0 0 30px #00ffff55,
      0 0 60px #00ffff88;
    animation: pulse 3s infinite alternate;
  }

  .video-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
  }

  /* Subtle neon glow animation */
  @keyframes pulse {
    0% {
      box-shadow:
        0 0 15px #00ffff33,
        0 0 30px #00ffff55,
        0 0 60px #00ffff88;
    }
    100% {
      box-shadow:
        0 0 25px #00fff099,
        0 0 60px #00ffffaa,
        0 0 120px #00ffffcc;
    }
  }

  /* Optional glowing text label */
  .title {
    position: absolute;
    bottom: 15px;
    left: 20px;
    color: #00ffff;
    font-weight: 600;
    font-size: 1.2rem;
    text-shadow:
      0 0 5px #00ffff,
      0 0 10px #00ffff,
      0 0 20px #00ffff;
    z-index: 2;
  }
  