* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
	  background: linear-gradient(145deg, #fef9e6 0%, #fff4e0 100%);
	  font-family: 'Inter', sans-serif;
      padding: 2rem 1.5rem;
      color: #2c3a2b;
      min-height: 100vh;
    }

    .page-wrapper {
      max-width: 1280px;
      margin: 0 auto;
	}
	
	.back-button {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(105deg, #ffdfaa, #ffcf8a);
      border: none;
      padding: 0.8rem 1.8rem;
      font-size: 1rem;
      font-weight: 700;
      border-radius: 80px;
      color: #4d3217;
      cursor: pointer;
      margin-bottom: 1rem;
      transition: all 0.2s;
      text-decoration: none;
    }

    .back-button:hover {
      transform: translateX(-5px);
      background: linear-gradient(105deg, #ffd89a, #ffc172);
    }

	.container {
      max-width: 1300px;
      margin: 0 auto;
    }
	
    .back-button:hover {
      background: rgba(255,255,255,0.35);
      transform: translateX(-5px);
    }

    /* Hero Section */
    .hero {
      background: rgba(255, 248, 225, 0.85);
      backdrop-filter: blur(2px);
      border-radius: 3rem;
      padding: 2rem 2rem 1.5rem;
      margin-bottom: 2rem;
      text-align: center;
      box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(255, 215, 150, 0.6);
    }

    h1 {
      font-size: 2.5rem;
      font-weight: 800;
      background: linear-gradient(135deg, #c25b2e, #e8904a, #f4b942);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      margin-bottom: 1rem;
    }

    .tagline {
      font-size: 1.1rem;
	  color: #6b5b3e;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(255,255,255,0.15);
      padding: 0.5rem 1.5rem;
      border-radius: 50px;
      backdrop-filter: blur(5px);
      margin-top: 0.5rem;
    }

    /* Counter Card */
    .counter-card {
      background: white;
      border-radius: 1.5rem;
      padding: 1.5rem 2rem;
      margin-bottom: 2rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 1rem;
      box-shadow: 0 20px 35px -10px rgba(0,0,0,0.2);
      background: linear-gradient(135deg, #ffffff 0%, #fef9e6 100%);
    }

    .total-label {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 1.1rem;
      font-weight: 600;
      color: #2d3748;
    }

    .total-label i {
      font-size: 1.8rem;
      color: #4f46e5;
    }

    .total-number {
      font-size: 2.8rem;
      font-weight: 800;
      background: linear-gradient(135deg, #1e6f5c, #4f46e5);
      background-clip: text;
      -webkit-background-clip: text;
      color: transparent;
      letter-spacing: 2px;
    }

    .refresh-badge {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 0.8rem;
      color: #718096;
      background: #f1f5f9;
      padding: 0.4rem 1rem;
      border-radius: 50px;
    }

    /* Two Columns Layout */
    .two-columns {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .form-wrapper {
      background: white;
      border-radius: 1.5rem;
      overflow: hidden;
      box-shadow: 0 25px 45px -12px rgba(0,0,0,0.25);
    }

    .form-header {
      background: linear-gradient(135deg, #1e6f5c, #289672);
      color: white;
      padding: 1.2rem 1.8rem;
      font-size: 1.2rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .google-embed {
      width: 100%;
      height: 1224px;
      border: none;
    }

    .info-note {
      padding: 12px 20px;
      background: #f8fafc;
      font-size: 0.8rem;
      border-top: 1px solid #eef2ff;
      color: #2d4a6e;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    /* Footer */
    .footer {
      text-align: center;
      padding: 2rem;
      background: white;
      border-radius: 1rem;
      margin-top: 2rem;
	  background: rgba(255, 255, 245, 0.96);
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
    }

    /* Responsive */
    @media (max-width: 768px) {
      body {
        padding: 1rem;
      }
      h1 {
        font-size: 1.6rem;
      }
      .counter-card {
        flex-direction: column;
        text-align: center;
      }
      .total-number {
        font-size: 2.2rem;
      }
      .google-embed {
        height: 550px;
      }
    }

    /* Animation */
    @keyframes pulse {
      0%, 100% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.05);
      }
    }

    .total-number.updating {
      animation: pulse 0.3s ease;
    }