    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Arial', sans-serif;
      background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
      color: white;
      overflow-x: hidden;
      min-height: 100vh;
    }

    .header {
      position: fixed;
      top: 0;
      width: 100%;
      background: rgba(10, 10, 10, 0.95);
      backdrop-filter: blur(10px);
      z-index: 1000;
      padding: 1rem 2rem;
      border-bottom: 1px solid rgba(236, 72, 153, 0.3);
    }

    .nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      position: relative;
    }

    .logo {
      font-size: 1.5rem;
      font-weight: bold;
      color: #e9ce37;
      text-decoration: none;
    }

    .nav-links {
      display: flex;
      gap: 2rem;
      list-style: none;
    }

    .nav-links a {
      color: white;
      text-decoration: none;
      transition: color 0.3s;
    }

    .nav-links a:hover {
      color: #ecd348;
    }

    .nav-links .active {
      color: #e9ce37;
      font-weight: 600;
    }

    .mobile-menu-toggle {
      display: none;
      background: none;
      border: none;
      color: #e9ce37;
      font-size: 1.8rem;
      cursor: pointer;
    }

    .hero {
      height: 35vh;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      background: linear-gradient(135deg, #2c4a21 0%, #4a0d47 50%, #2a0a2a 100%);
      padding-top: 80px;
    }

    .hero-content {
      text-align: center;
      z-index: 2;
      max-width: 800px;
      padding: 2rem;
    }

    .hero-title {
      font-size: 4rem;
      font-weight: 900;
      margin-bottom: 1rem;
      background: linear-gradient(45deg, #b69f20, #f0e49f, #aa920b);
      background-size: 200% 200%;
      background-clip: text;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: gradient 3s ease infinite;
    }

    @keyframes gradient {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }

    .hero-subtitle {
      font-size: 1.5rem;
      color: #a1a1aa;
    }

    .container {
      max-width: 1200px;
      margin: 4rem auto;
      padding: 0 2rem;
    }

    .controls {
      display: flex;
      gap: 1rem;
      margin-bottom: 3rem;
      justify-content: center;
      flex-wrap: wrap;
    }

    .controls input {
      padding: 1rem 1.5rem;
      border-radius: 50px;
      border: 2px solid rgba(236, 72, 153, 0.3);
      background: rgba(20, 20, 20, 0.8);
      color: white;
      font-size: 1rem;
      min-width: 358px;
      transition: all 0.3s;
    }

    .controls input:focus {
      outline: none;
      border-color: #e9ce37;
      box-shadow: 0 0 20px rgba(233, 206, 55, 0.3);
    }

    .controls input::placeholder {
      color: #666;
    }

    .controls button {
      background: linear-gradient(45deg, #00d800, #f916a2);
      border: none;
      color: white;
      padding: 1rem 2rem;
      border-radius: 50px;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
    }

    .controls button:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(236, 72, 153, 0.4);
    }

    .error {
      text-align: center;
      color: #ff4444;
      padding: 1rem;
      font-size: 1.1rem;
    }

    #content {
      background: rgba(20, 20, 20, 0.8);
      backdrop-filter: blur(10px);
      border-radius: 20px;
      padding: 2rem;
      border: 1px solid rgba(236, 72, 153, 0.3);
    }

    .now {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 2rem;
      background: rgba(50, 50, 50, 0.4);
      border-radius: 15px;
      margin-bottom: 3rem;
      border: 1px solid rgba(236, 72, 153, 0.2);
    }

    #name {
      font-size: 2rem;
      font-weight: 700;
      color: #e9ce37;
      margin-bottom: 0.5rem;
    }

    #desc {
      font-size: 1.2rem;
      color: #a1a1aa;
      margin-bottom: 0.3rem;
    }

    #time {
      font-size: 0.95rem;
      color: #777;
    }

    .temp {
      font-size: 4rem;
      font-weight: 900;
      color: white;
      line-height: 1;
    }

    .meta {
      font-size: 0.95rem;
      color: #a1a1aa;
      margin-top: 0.5rem;
    }

    .hourly-section {
      margin-bottom: 3rem;
    }

    .hourly-header {
      font-size: 1.5rem;
      font-weight: 700;
      color: #e9ce37;
      margin-bottom: 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .hourly-scroll {
      overflow-x: auto;
      overflow-y: hidden;
      scrollbar-width: thin;
      scrollbar-color: rgba(236, 72, 153, 0.5) rgba(50, 50, 50, 0.4);
      padding-bottom: 1rem;
    }

    .hourly-scroll::-webkit-scrollbar {
      height: 8px;
    }

    .hourly-scroll::-webkit-scrollbar-track {
      background: rgba(50, 50, 50, 0.4);
      border-radius: 10px;
    }

    .hourly-scroll::-webkit-scrollbar-thumb {
      background: rgba(236, 72, 153, 0.5);
      border-radius: 10px;
    }

    .hourly-scroll::-webkit-scrollbar-thumb:hover {
      background: rgba(236, 72, 153, 0.7);
    }

    .hourly-container {
      display: flex;
      gap: 1rem;
      min-width: min-content;
    }

    .hour-item {
      background: rgba(50, 50, 50, 0.6);
      border: 1px solid rgba(236, 72, 153, 0.2);
      padding: 1rem;
      border-radius: 15px;
      text-align: center;
      min-width: 90px;
      transition: all 0.3s;
      flex-shrink: 0;
    }

    .hour-item:hover {
      border-color: rgba(236, 72, 153, 0.5);
      background: rgba(100, 50, 100, 0.4);
      transform: translateY(-3px);
      box-shadow: 0 8px 20px rgba(236, 72, 153, 0.2);
    }

    .hour-item.current {
      background: rgba(233, 206, 55, 0.15);
      border-color: rgba(233, 206, 55, 0.5);
      box-shadow: 0 0 15px rgba(233, 206, 55, 0.3);
    }

    .hour-time {
      font-weight: 600;
      font-size: 0.95rem;
      color: #e9ce37;
      margin-bottom: 0.5rem;
    }

    .hour-icon {
      font-size: 2rem;
      margin: 0.5rem 0;
    }

    .hour-temp {
      font-size: 1.3rem;
      font-weight: 700;
      color: white;
      margin: 0.5rem 0;
    }

    .hour-desc {
      font-size: 0.8rem;
      color: #a1a1aa;
      margin-top: 0.3rem;
    }

    .weekly-header {
      font-size: 1.5rem;
      font-weight: 700;
      color: #e9ce37;
      margin-bottom: 1.5rem;
    }

    .weekly {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
      gap: 1.5rem;
    }

    .day {
      background: rgba(50, 50, 50, 0.6);
      border: 1px solid rgba(236, 72, 153, 0.2);
      padding: 1.5rem;
      border-radius: 15px;
      text-align: center;
      transition: all 0.3s;
    }

    .day:hover {
      border-color: rgba(236, 72, 153, 0.5);
      background: rgba(100, 50, 100, 0.4);
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(236, 72, 153, 0.2);
    }

    .day > div:first-child {
      font-weight: 700;
      font-size: 1.1rem;
      color: #e9ce37;
      margin-bottom: 0.8rem;
    }

    .day > div:nth-child(2) {
      font-size: 1.5rem;
      font-weight: 600;
      color: white;
      margin: 0.8rem 0;
    }

    .day > div:last-child {
      font-size: 0.9rem;
      color: #a1a1aa;
    }

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.95);
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(236, 72, 153, 0.3);
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-title {
    font-size: 2rem;
    font-weight: bold;
    color: #ec4899;
    margin-bottom: 1rem;
}

.footer-text {
    color: #a1a1aa;
    font-size: 1.1rem;
}

.footer-link {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-link:hover {
    color: #ff94c9;
}


    @media (max-width: 768px) {
      .nav-links {
        flex-direction: column;
        gap: 1rem;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(236, 72, 153, 0.3);
        padding: 0 1rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
      }

      .nav-links.active {
        max-height: 300px;
        padding: 1rem;
      }

      .mobile-menu-toggle {
        display: block;
      }

      .logo {
        font-size: 1.25rem;
      }

      .hero {
        height: auto;
        padding: 6rem 1rem 3rem;
      }

      .hero-title {
        font-size: 2.5rem;
      }

      .hero-subtitle {
        font-size: 1.2rem;
      }

      .container {
        padding: 0 1rem;
        margin: 2rem 0;
      }

      .controls {
        flex-direction: column;
        align-items: stretch;
      }

      .controls input {
        min-width: unset;
      }

      .controls button {
        width: 100%;
      }

      .now {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
      }

      .now > div:last-child {
        margin-left: 0 !important;
      }

      .temp {
        font-size: 3rem;
      }

      .weekly {
        grid-template-columns: 1fr;
      }

      #content {
        padding: 1.5rem;
      }
    }