       
        body {
            font-family: 'Noto Sans TC', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #f8f9fa;
            color: #333;
        }/* Navigation Bar Styles */
.navbar {
    position: sticky;
    top: 0;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 100%;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
    height: 70px;
}

.navbar-logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 22px;
    color: #1976d2;
    transition: all 0.3s ease;
}

.navbar-logo a:hover {
    transform: scale(1.05);
}

.navbar-icon {
    width: 35px;
    height: 35px;
    margin-right: 8px;
}

.navbar-links {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.navbar-links li {
    margin: 0 5px;
}

.navbar-links a {
    display: block;
    padding: 10px 15px;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.navbar-links a:hover {
    color: #1976d2;
    background-color: rgba(33, 150, 243, 0.1);
}

.navbar-links a.active {
    color: #1976d2;
    background-color: rgba(33, 150, 243, 0.1);
}

.navbar-actions {
    display: flex;
    align-items: center;
}

.login-button, .register-button {
    padding: 8px 16px;
    margin-left: 10px;
    text-decoration: none;
    font-weight: 500;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.login-button {
    color: #1976d2;
    background-color: transparent;
    border: 1px solid #1976d2;
}

.login-button:hover {
    background-color: rgba(33, 150, 243, 0.1);
}

.register-button {
    color: white;
    background: linear-gradient(135deg, #1976d2 0%, #2196f3 100%);
}

.register-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #1976d2;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Adjust header padding to account for navbar */
.header {
    padding-top: 40px;
}

/* Mobile Navigation */
@media screen and (max-width: 920px) {
    .navbar{
        font-weight: bold;
    }
    .navbar-menu, .navbar-actions {
        display: none;
    }
    
    .navbar-menu.active {
        display: block;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: white;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        padding: 20px;
        z-index: 998;
    }
    
    .navbar-links {
        flex-direction: column;
    }
    
    .navbar-links li {
        margin: 10px 0;
    }
    
    .navbar-actions.active {
        display: flex;
    }
    
    .navbar-actions.active a {
        margin: 8px 0;
        text-align: center;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .hamburger-menu.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
}

@media screen and (max-width: 500px) {
    .navbar-container {
        padding: 0 15px;
        height: 60px;
    }
    
    .navbar-logo a {
        font-size: 18px;
    }
    
    .navbar-icon {
        width: 28px;
        height: 28px;
    }
}


.header {
    background: linear-gradient(135deg, #1976d2 0%, #2196f3 100%);
    color: white;
    text-align: center;
    padding: 60px 20px 40px;
    font-size: 32px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.url-input-container {
    margin: 20px auto 0;
    max-width: 650px;
    display: flex;
    padding: 10px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.url-input {
    flex-grow: 1;
    padding: 14px 20px;
    font-size: 16px;
    border: none;
    border-radius: 6px 0 0 6px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.url-input:focus {
    outline: none;
    box-shadow: inset 0 1px 5px rgba(0, 0, 0, 0.2);
}

.shorten-button {
    background: linear-gradient(135deg, #7cb342 0%, #8bc34a 100%);
    color: white;
    border: none;
    padding: 14px 24px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    border-radius: 0 6px 6px 0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.shorten-button:hover {
    background: linear-gradient(135deg, #8bc34a 0%, #9ccc65 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.content-box {
    margin: 50px auto;
    max-width: 850px;
    background-color: #e8f5e9;
    border: 2px dashed #4caf50;
    border-radius: 18px;
    padding: 30px;
    display: flex;
    align-items: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.content-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.cat-mascot {
    width: 140px;
    height: 160px;
    margin-right: 30px;
    filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.2));
}

.content-text {
    margin: 10px;
    flex-grow: 1;
    line-height: 1.8;
    font-size: 18px;
}

.content-text p {
    margin-bottom: 20px;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
}

.telegram-button {
    background: linear-gradient(135deg, #0088cc 0%, #2196f3 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 17px;
    font-weight: 500;
    border-radius: 50px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 260px;
    margin: 20px auto 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(33, 150, 243, 0.3);
}

.telegram-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(33, 150, 243, 0.4);
}

.telegram-icon {
    margin-right: 12px;
    width: 24px;
    height: 24px;
}

.img-wazz{
    height: 80%;
    width: fit-content;
    margin: 20px 40px;
}
i{
    line-height: 20px;
    font-size: 30px;
}

.user-menu {
    position: relative;
  }
  
  .user-trigger {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
  }
  
  .user-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
  }
  
  .user-name {
    color: #1976d2;
  }
  
  .user-dropdown {
    display: none;
    position: absolute;
    right: 0;
    top: 100%;
    background-color: white;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    min-width: 140px;
    margin-top: 8px;
    z-index: 999;
  }
  
  .user-dropdown-item {
    display: block;
    text-align: center;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
  }
  
  .user-dropdown-item:hover {
    background-color: #f0f0f0;
  }
  
  .user-dropdown-form {
    margin: 0;
  }
  
  .user-logout-button {
    width: 100%;
    border: none;
    background: none;
    padding: 10px 16px;
    text-align: center;
    color: #e53935;
    cursor: pointer;
  }
  
  .user-logout-button:hover {
    background-color: #fef0f0;
  }
  